Metadata-Version: 2.1
Name: thaiaddress
Version: 0.2.1
Summary: A Python parser for Thai address
Home-page: https://github.com/425degree-developers/thaiaddress
Author: Titipat Achakulvisut
Author-email: my.titipat@gmail.com
License: Apache Software License 2.0 (c) 2020 Titipat Achakulvisut, 425 Degree Co., Bangkok, Thailand
Download-URL: https://github.com/425degree-developers/thaiaddress.git
Project-URL: Source, https://github.com/425degree-developers/thaiaddress
Project-URL: Documentation, https://github.com/425degree-developers/thaiaddress
Project-URL: Bug Reports, https://github.com/425degree-developers/thaiaddress/issues
Description: # thaiaddress: A Parser for Thai Address
        
        Parser for Thai address. ไลบรารี่เพื่อแยกแยะชื่อ/ที่อยู่/รหัสไปรษณีย์/เบอร์โทรศัพท์
        
        ## Installation
        
        You can install a recent development (recommended) using `pip` directly
        from the repository
        
        ```sh
        pip install git+git://github.com/425degree-developers/thaiaddress.git
        ```
        
        or stable version from [PyPi](https://pypi.org/project/thaiaddress/) using
        
        ```sh
        pip install thaiaddress
        ```
        
        ## Example Usage
        
        ```py
        import thaiaddress
        thaiaddress.parse("นายปรายุ้ด จันทร์กะเพรา 099-999-9999 25/25 ถ.พุทธมณฑล สาย 4 ต. ศาลายา อ.พุทธมณฑล จ.นครปฐม 73170")
        
        >>> {
            'text': 'นายปรายุ้ด จันทร์กะเพรา 25/25 ถ.พุทธมณฑล สาย 4 ต. ศาลายา อ.พุทธมณฑล จ.นครปฐม 73170',
            'name': 'นายปรายุ้ด จันทร์กะเพรา',
            'address': '25/25 ถ.พุทธมณฑล สาย 4',
            'location': 'ต. ศาลายา อ.พุทธมณฑล จ.นครปฐม',
            'province': 'นครปฐม',
            'district': 'พุทธมณฑล',
            'subdistrict': 'ศาลายา',
            'postal_code': '73170',
            'phone_number': '0999999999',
            'email': ''
        }
        ```
        
        ### Display output on Jupyter notebook
        
        <img src="https://raw.githubusercontent.com/425degree-developers/thaiaddress/master/images/example-usage.png" />
        
        ## Development Plan
        
        - This is an early version of our parser with very little data. We will make a better model relatively soon.
        
        ## Developers
        
        This repository is developed at [425 Degree Co., Bangkok, Thailand](https://www.425degree.com/)
        
        <img src="https://raw.githubusercontent.com/425degree-developers/thaiaddress/master/images/425degree-logo.png" />
        
Keywords: Parser,Address,Thai Address,Thai Natural Language Processing,Natural Language Processing
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
