Metadata-Version: 2.1
Name: Num2Kor
Version: 1.0.3
Summary: Convert Number into Korean Words!
Home-page: https://github.com/pl-Steve28-lq/Num2Kor
Author: Steve28
Author-email: holiday28784@gmail.com
License: UNKNOWN
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

# Num2Kor 
Convert Number into Korean Words! <br>
Inspired by [huskyhoochu/num-to-korean](https://github.com/huskyhoochu/num-to-korean)

## Download
`pip install num2kor`

## Features
```Python
def numToKor(num: int, option: Format = Format.Null) -> str

class Format(Enum):
  Null, Spaced,
  Mixed, NoDots,
  Lingual, SpacedLingual
```

## Example
```Python
from num2kor import *

numToKor(11_235_973_450, Format.Mixed)   # '112억 3,597만 3,450'

numToKor(1_123_492_832_717, Format.NoDots)   # '1조 1234억 9283만 2717'

numToKor(235_417_898_967_198, Format.Null)   # '이백삼십오조사천일백칠십팔억구천팔백구십육만칠천일백구십팔'

numToKor(2_459_873_487_316, Format.Spaced)   # '이조 사천오백구십팔억 칠천삼백사십팔만 칠천삼백일십육'

numToKor(11_231_123_111_121, Format.Lingual)   # '십일조이천삼백십일억이천삼백십일만천백이십일'

numToKor(12_341_234_573_721, Format.SpacedLingual)   # '십이조 삼천사백십이억 삼천사백오십칠만 삼천칠백이십일'
```


