https://github.com/hitblast/avro.py
⚡ A modern Pythonic implementation of Avro Phonetic.
https://github.com/hitblast/avro.py
avro-phonetic bangla bangladesh bengali-phonetic hacktoberfest python python3 text-parsers
Last synced: 3 months ago
JSON representation
⚡ A modern Pythonic implementation of Avro Phonetic.
- Host: GitHub
- URL: https://github.com/hitblast/avro.py
- Owner: hitblast
- License: mit
- Created: 2022-06-20T10:56:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-06T02:57:36.000Z (4 months ago)
- Last Synced: 2025-04-09T15:08:37.998Z (3 months ago)
- Topics: avro-phonetic, bangla, bangladesh, bengali-phonetic, hacktoberfest, python, python3, text-parsers
- Language: Python
- Homepage: https://pypi.org/project/avro.py
- Size: 3.44 MB
- Stars: 24
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
#
avro.py
A modern Pythonic implementation of the popular Bengali phonetic-typing software **Avro Phonetic.**
[](https://pepy.tech/project/avro-py)


[](https://github.com/hitblast/avro.py/actions/workflows/unit-tests.yml)
[](https://github.com/hitblast/avro.py/actions/workflows/nightly.yml)
[](https://github.com/hitblast/avro.py/actions/workflows/linting.yml)
[](https://github.com/hitblast/avro.py/actions/workflows/formatting.yml)
## ⚡ Overview
**avro.py** provides a fully fledged, batteries-included text parser which can
parse, reverse and even convert English Roman script into its phonetic
equivalent (unicode) of Bengali. At its core, it implements an extensively
modified version of the **Avro Phonetic Dictionary Search Library** by [Mehdi
Hasan Khan](https://github.com/mugli).> [!IMPORTANT]
> Update: As of October 2024, Python 3.8 has reached its EOL, so for keeping
> this project updated, the minimum required version will be Python 3.9 from now
> onwards. It is strongly suggested that you migrate your project for better
> compatibility.## ✨ Inspirations
This package is inspired from Rifat Nabi's jsAvroPhonetic library and derives from Kaustav Das Modak's pyAvroPhonetic.
## 🔨 Installation
This package requires **Python 3.9 or higher** to be used inside your development environment.
```sh
# Install / upgrade.
$ pip install avro.py
```#### 📦 ...or you can try the CLI!
[**avnie**](https://github.com/hitblast/avnie) is a newly developed CLI tool
that uses avro.py under the hood. You can install it using:```sh
# Install / upgrade avnie.
$ pip install avnie
```
## 🔖 Usage Guide
This small tour guide will describe how you can use avro.py back and forth to
operate (cutlery!) on Bengali text. You can also check the
[examples](https://github.com/hitblast/avro.py/tree/main/examples) directory for
checking [this whole
snippet](https://github.com/hitblast/avro.py/blob/main/examples/basic.py) in
action, as well as other use cases.1. `parse()`
Let's assume I want to parse some English text to Bengali, which is "ami banglay
gan gai.", so in this case to convert it to Bengali, we can use this snippet as
a starter code and then extend upon it as our boilerplate for multiple
operations later on:```python
# Import the package.
import avro# Our dummy text.
dummy = 'ami banglay gan gai.'# Parsing the text.
avro_output = avro.parse(dummy)
print(output) # Output: আমি বাংলায় গান গাই।
```2. `parse(bijoy=True)`
Alternatively, I can also do it in Bijoy Keyboard format:
```python
bijoy_output = avro.parse(dummy, bijoy=True)
# Output: Avwg evsjvh় Mvb MvB।
```3. `to_bijoy()`
Or, we can take the previous `avro_output` and convert it to Bijoy if we want to, like this:
```python
bijoy_text = avro.to_bijoy(avro_output)
# Output: Avwg evsjvh় Mvb MvB।
```4. `to_unicode()`
Conversely, we can convert the Bijoy text we got just now and convert it back to Unicode Bengali:
```python
unicode_text = avro.to_unicode(bijoy_text)
# Output: আমি বাংলায় গান গাই।
```5. `reverse()`
Finally, we can just reverse back to the original text we passed as input in the first place:
```python
reversed_text = avro.reverse(uncode_text)
# Output: ami banglay gan gai.
```
### 🐍 A note on `async`/`await` support:
Since version
[2024.12.5](https://github.com/hitblast/avro.py/releases/tag/2024.12.5), the
package now supports `async`/`await` syntax for all the functions.> [!NOTE]
> Unless you have a very specific use, the asynchronous functions only
> provide slight performance improvements and are not necessary for most use
> cases, so their usage is optional.Please have a look at the
[examples](https://github.com/hitblast/avro.py/tree/main/examples) for a more
thorough understanding of how to use the package in both synchronous and
asynchronous contexts.
## 🛠️ Contributing
:octocat: _Fork -> Do your changes -> Send a Pull Request, it's that easy!_
---
**Additional Developer Notes**
This project is based on the [uv](https://github.com/astral-sh/uv) package
manager by Astral. In order to automatically update and set up the environment,
you can run the following command:```sh
# (Optional) Install recommended Python version: (also sets up the virtual environment)
$ uv python install && uv venv
$ source .venv/bin/activate# Install the project:
$ uv sync --all-extras --dev# Build the project:
$ uv build --verbose
```In order to run the tests, you can use the following command:
```sh
# Run unit tests:
$ uv run pytest .
```
### 🐛 We're looking for bug hunters, by the way!
If you come across any kind of bug or wanna request a feature, please let us
know by opening an issue [here](https://github.com/hitblast/avro.py/issues). We
do need more ideas to keep the project alive and running, don't we? :P---
## 👑 Acknowledgements
- [Mehdi Hasan Khan](https://github.com/mugli) for originally developing and maintaining [Avro Phonetic](https://github.com/omicronlab/Avro-Keyboard).
- [Rifat Nabi](https://github.com/torifat) for porting it to Javascript.
- [Sarim Khan](https://github.com/sarim) for writing ibus-avro which helped to clarify my concepts further.
- [Kaustav Das Modak](https://github.com/kaustavdm) for porting Rifat Nabi's JavaScript iteration to Python 2.
- Md Enzam Hossain for helping him understand the ins and outs of the Avro dictionary and the way it works.
## 📋 License
Licensed under the [MIT License](https://github.com/hitblast/avro.py/blob/main/LICENSE).