Metadata-Version: 2.1
Name: num_thai
Version: 0.0.5
Summary: This convert number to thai text lib
Home-page: https://github.com/pinyoothotaboot/num-thai
Author: Mr.Pinyoo Thotaboot
Author-email: pinyoo.too@gmail.com
License: MIT
Description: # Number to Thai text
        
        The tool is a convert number to thai text : **Python 3.6+**.
        
        # Features
        - Convert number integer or float to Thai text.
        - Convert thai text to number.
        
        # Setup
        - Check version Python and PIP
        ![](https://github.com/pinyoothotaboot/num-thai/blob/master/docs/images/check_version.png?raw=true)
        
        - Install lib : num-thai
        ![](https://github.com/pinyoothotaboot/num-thai/blob/master/docs/images/install_numthai.png?raw=true)
        
        - Test lib in python shell
        ![](https://github.com/pinyoothotaboot/num-thai/blob/master/docs/images/example_numthai.png?raw=true)
        
        
        # Example
        
        ```python
        
        from num_thai.thainumbers import NumThai
        
        num = NumThai()
        text = num.NumberToTextThai(1111111111111111)
        
        number = num.TextThaiToNumber("ลบสามสิบเอ็ดจุดแปดหก")
        
        print("Text is ",text)
        
        print("Number is ",number)
        
        ```
        
        # About
        
        - Support digit length 1 - 16 digit.
        - Support minus digit.
        - Support integer or float number.
        - Support thai text
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
