Metadata-Version: 2.1
Name: silabel
Version: 0.3
Summary: Silabel is a python package to syllabelize indonesian word
Home-page: https://github.com/WiraDKP/indonesian_syllabelizer
Author: Wira Dharma Kencana Putra
Author-email: wiradharma_kencanaputra@yahoo.com
License: UNKNOWN
Description: # Syllabelizer for Indonesian Language in Python
        This is a rule-based syllabelizer for Indonesian Language. Please note that this project does not aim to replicate rules in Ejaan yang Disempurnakan (EYD), but focuses on a simple way to split indonesian words into common sub-words because it is good enough for my purposes.
        
        ## Installation
        ```
        pip install silabel
        ```
        
        ## Example Usage
        ```python
        from silabel import Syllabelizer
        
        s = Syllabelizer()
        s.syllabelize("menggunakan") # ['meng', 'gu', 'na', 'kan']
        s.syllabelize("memperkirakan") # ['mem', 'per', 'ki', 'ra', 'kan']
        ```
        
        ## End notes :heart:
        There is no reference used in this project. I simply create a set of rules based on indonesian vocal, consonant, and diftong to syllabelize indonesian words.
        
        I made this repo for educational purposes so it might need further tweaking to reach production level. <br>
        Feel free to create an issue if you need help, and I hope I'll have the time to help you. Thank you.
        
        :heart: from Indonesia
Keywords: silabel syllable indonesian indonesia jcop nlp bahasa
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Natural Language :: Indonesian
Requires-Python: >=3.6
Description-Content-Type: text/markdown
