Skip to main content

Tools for processing font encodings used in Myanmar

Project description

This documentation is python specific usage of Myanmar Tools. For general documentation, see the top-level README.

Installation

From PyPI

$ pip install myanmartools

From GitHub

$ pip install 'git+https://github.com/google/myanmar-tools@master#egg=myanmartools&subdirectory=clients/python'

Usage Examples

To detect Zawgyi, create an instance of ZawgyiDetector, and call get_zawgyi_probability with a string:

from myanmartools import ZawgyiDetector

detector = ZawgyiDetector()
score = detector.get_zawgyi_probability('မ္း')
# score is now 0.999772 (very likely Zawgyi)

For Zawgyi-to-Unicode conversion, you can use the ICU library. Install it using pip install PyICU.

To convert Zawgyi to Unicode, create an instance of ICU Transliterator with the transform ID “Zawgyi-my”, and call transiliterate with a string:

from icu import Transliterator

converter = Transliterator.createInstance('Zawgyi-my')
output = converter.transliterate('မ္း')
# output is now 'မ်း'

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

myanmartools-1.2.1.tar.gz (30.6 kB view hashes)

Uploaded Source

Built Distributions

myanmartools-1.2.1-py3.8.egg (32.1 kB view hashes)

Uploaded Source

myanmartools-1.2.1-py3-none-any.whl (28.9 kB view hashes)

Uploaded Python 3

Supported by

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