Metadata-Version: 2.1
Name: pyidaungsu
Version: 0.0.6
Summary: Python library for Myanmar language
Home-page: https://github.com/kaunghtetsan275/pyidaungsu
Author: Kaung Htet San
Author-email: kaung@htetsan.me
License: UNKNOWN
Download-URL: https://github.com/kaunghtetsan275/pyidaungsu/archive/0.0.6.tar.gz
Description: # Pyidaungsu
        
        Python library for Myanmar language. Useful in Natural Language Processing and text preprocessing for Myanmar language.
        
        ## Installation
        
        ```
        pip install pyidaungsu
        ```
        
        ## Usage
        
        #### Zawgyi-Unicode detection
        
        ```sh
        import pyidaungsu as pds
        
        # font encoding detection
        pds.detect("ထမင်းစားပြီးပြီလား")
        >> "Unicode"
        ```
        
        #### Zawgyi-Unicode conversion
        
        ```sh
        # convert to zawgyi
        pds.cvt2zgi("ထမင်းစားပြီးပြီလား")
        >> "ထမင္းစားၿပီးၿပီလား"
        
        # convert to unicode
        pds.cvt2uni("ထမင္းစားၿပီးၿပီလား")
        >> "ထမင်းစားပြီးပြီလား"
        ```
        
        #### Syllabification
        
        ```sh
        # syllabification
        pds.syllabify("Alan TuringကိုArtificial Intelligenceနဲ့Computerတွေရဲ့ဖခင်ဆိုပြီးလူသိများပါတယ်")
        >> ['Alan', 'Turing', 'ကို', 'Artificial', 'Intelligence', 'နဲ့', 'Computer', 'တွေ', 'ရဲ့', 'ဖ', 'ခင်', 'ဆို', 'ပြီး', 'လူ', 'သိ', 'များ', 'ပါ', 'တယ်']
        ```
        
        ## Future work
        
        - [ ] Add tokenizer
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
