Skip to main content

A modern Pythonic implementation of Avro Phonetic.

Project description

avro.py

A modern Pythonic implementation of the popular Bengali phonetic-typing software Avro Phonetic.

Downloads Python Version License



Unit Tests Nightly Builds Linting Formatting


⚡ 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.

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.

# Install / upgrade.
$ pip install avro.py

📦 ...or you can try the CLI!

avnie is a newly developed CLI tool that uses avro.py under the hood. You can install it using:

# 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 directory for checking this whole snippet 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:

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:

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:

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:

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:

reversed_text = await avro.reverse(uncode_text)  # Output: ami banglay gan gai.

🛠️ Contributing

:octocat: Fork -> Do your changes -> Send a Pull Request, it's that easy!


Additional Developer Notes

This project is based on the uv package manager by Astral. In order to automatically update and set up the environment, you can run the following command:

# (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:

# 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. We do need more ideas to keep the project alive and running, don't we? :P



👑 Acknowledgements

  • Mehdi Hasan Khan for originally developing and maintaining Avro Phonetic.
  • Rifat Nabi for porting it to Javascript.
  • Sarim Khan for writing ibus-avro which helped to clarify my concepts further.
  • Kaustav Das Modak 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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

avro_py-2024.12.5.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

avro_py-2024.12.5-py3-none-any.whl (19.8 kB view details)

Uploaded Python 3

File details

Details for the file avro_py-2024.12.5.tar.gz.

File metadata

  • Download URL: avro_py-2024.12.5.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.6

File hashes

Hashes for avro_py-2024.12.5.tar.gz
Algorithm Hash digest
SHA256 06fca7eb947ddf2a3e3a537f314d710adc76bc11efacfd538ca136e553282495
MD5 9031d0ea7a571c4114881c73f927bd99
BLAKE2b-256 6328213561d8223cc58d1cdabe242a1289791ad5efc1fbd131ded6447e5be64e

See more details on using hashes here.

File details

Details for the file avro_py-2024.12.5-py3-none-any.whl.

File metadata

File hashes

Hashes for avro_py-2024.12.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ec954a734da992aad22b54849e93adf6ab0bc114d602752fe9725e0dc8ed22fc
MD5 968bfd3f9b2fa245a44aa039cc78dd83
BLAKE2b-256 36044a6503337bdc3d0a8713431ced2bcd18a1fa40bcfd69b8241f5d392d6cfe

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page