Metadata-Version: 2.1
Name: korNum
Version: 0.0.1
Summary: change Korean tex number <---> Arabian number
Home-page: https://github.com/study-ai-data/korNum
Author: ('Kyeongnam Kim',)
Author-email: kkyy0126@naver.com
License: MIT
Download-URL: https://github.com/study-ai-data/korNum
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Korean
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Description-Content-Type: text/markdown

# korNum
[![Python](https://img.shields.io/pypi/pyversions/korNum.svg?style=plastic)](https://badge.fury.io/py/korNum)
[![PyPI](https://badge.fury.io/py/korNum.svg)](https://badge.fury.io/py/korNum)  
Change **[Korean number text -> Arabic number]** or<br>
**[Arabic number -> Korean number text]**

### Installation
* pypi: ```pip install korNum```
* source code:
  ```bash
  git clone https://github.com/study-ai-data/korNum.git
  cd korNum
  python setup.py install
  ```

### Getting Started
* pypi
  ```python
  >>> from korNum.chgFormat import kor2num
  >>> text1 = "맛있는 포카칩이 구천팔백칠십육억오천사백삼십이만천백십일원!"
  >>> print(kor2num(text1))
  맛있는 포카칩이 987654321111원!
  >>> text2 = "맛있는 포카칩이 구천팔백칠십육억오천사백삼십이만천백십일원에서 오백십만육십구원, 만오천구백원을 거쳐 이제는 천오백원으로!"
  >>> print(kor2num(text2))
  맛있는 포카칩이 987654321111원에서 5100069원, 15900원을 거쳐 이제는 1500원으로!
  ```
* source code:
  ```python run.py```

### Note
* only operate about cardinal number(기수: 일, 이, 삼, 사, ...) text -> real num
* You can see more information here: [Description.md](https://github.com/study-ai-data/korNum/blob/master/Description.md)


