Metadata-Version: 2.1
Name: meiteimayek-mapping
Version: 0.0.1
Summary: Utility Functions for managing Meitei Mayek Characters and mapping to E-pao Font.
Home-page: https://github.com/GyanendroKh/MayekMapping/tree/master/python
Author: Gyanendro Kh
Author-email: me@gyanendrokh.dev
License: Apache-2.0
Keywords: meiteimayek,meitei-mayek,mapping,utility,manipuri
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# MayekMapping

Utility Functions for managing Meitei Mayek Characters and mapping to E-pao Fonts.

### Installation

`$ python3 -m pip install meiteimayek-mapping`

### Usage

```python
from mayek import Mayek

mayek = Mayek('epao') # 'ratha'

# This will print out all the Mapum Mayek
print(mayek.MAPUM)

# This will print out all the Lonsum Mayek
print(mayek.LONSUM)

# This will print out all the Cheitap Mayek
print(mayek.CHEITAP)

# This will print out all the Cheising Mayek
print(mayek.CHEISING)

# This will print out all the KHUDMA Mayek
print(mayek.KHUDAM)

# This will convert the character code of E-pao font to Unicode
print(mayek.to_unicode('mitE myeQ'))

# THis will convert from Unicode to E-pao font's character code
print(mayek.from_unicode('ꯃꯤꯇꯩ ꯃꯌꯦꯛ'))
```
