Skip to content

Commit

Permalink
test commit with new doc details page
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Dec 8, 2024
1 parent 0a6c4f2 commit ddb8845
Showing 1 changed file with 165 additions and 5 deletions.
170 changes: 165 additions & 5 deletions src/avro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,177 @@


"""
A modern Pythonic implementation of Avro Phonetic.
Please refer to the GitHub repository for examples on getting started:
https://github.com/hitblast/avro.py
<div align="center">
# <img src="https://raw.githubusercontent.com/github/explore/80688e429a7d4ef2fca1e82350fe8e3517d3494d/topics/python/python.png" height="40px"/> avro.py
A modern Pythonic implementation of the popular Bengali phonetic-typing software **Avro Phonetic.**
[![Downloads](https://static.pepy.tech/personalized-badge/avro-py?period=total&units=international_system&left_color=grey&right_color=black&left_text=Downloads)](https://pepy.tech/project/avro-py)
![Python Version](https://img.shields.io/pypi/pyversions/avro.py.svg?color=black&label=Python)
![License](https://img.shields.io/pypi/l/avro.py.svg?color=black&label=License)
<br>
<img src="https://github.com/hitblast/avro.py/blob/main/assets/banner.png?raw=True" style="width: 500px; height: auto;"><br>
[![Unit Tests](https://github.com/hitblast/avro.py/actions/workflows/unit-tests.yml/badge.svg?branch=main)](https://github.com/hitblast/avro.py/actions/workflows/unit-tests.yml)
[![Nightly Builds](https://github.com/hitblast/avro.py/actions/workflows/nightly.yml/badge.svg?branch=main)](https://github.com/hitblast/avro.py/actions/workflows/nightly.yml)
[![Linting](https://github.com/hitblast/avro.py/actions/workflows/linting.yml/badge.svg)](https://github.com/hitblast/avro.py/actions/workflows/linting.yml)
[![Formatting](https://github.com/hitblast/avro.py/actions/workflows/formatting.yml/badge.svg)](https://github.com/hitblast/avro.py/actions/workflows/formatting.yml)
<br>
</div>
## ⚡ 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).
> 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. <br>
## ✨ Inspirations
This package is inspired from Rifat Nabi's jsAvroPhonetic library and derives from Kaustav Das Modak's pyAvroPhonetic.
<br>
## 🔨 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
```
<br>
## 🔖 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/simple.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 starter code and follow along with the other examples to add further features:
```python
import asyncio
import avro
async def main() -> None:
dummy = 'ami banglay gan gai.'
avro_output = await avro.parse(dummy)
print(output) # Output: আমি বাংলায় গান গাই।
if __name__ == '__main__':
asyncio.run(main())
```
#### 2. `parse(bijoy=True)`
Alternatively, I can also do it in **Bijoy Keyboard format**:
```python
bijoy_output = await 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 = await 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 = await avro.to_unicode(bijoy_text) # Output: আমি বাংলায় গান গাই।
```
#### 4. `reverse()`
Finally, we can just reverse back to the original text we passed as input in the first place:
```python
reversed_text = await avro.reverse(uncode_text) # Output: ami banglay gan gai.
```
<br>
## 🛠️ Contributing
:octocat: _Fork -> Do your changes -> Send a Pull Request, it's that easy!_ <br>
---
**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 .
```
<br>
### 🐛 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
---
<br>
## 👑 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.
<br>
## 📋 License
Licensed under the [MIT License](https://github.com/hitblast/avro.py/blob/main/LICENSE).
Licensed under the terms of the MIT License.
"""

# Import local modules.
from .main import *

# Version information.
__version_info__ = (2024, 10, 30)
__version_info__ = (2024, 12, 9)
__version__ = ".".join(map(str, __version_info__))

0 comments on commit ddb8845

Please sign in to comment.