Metadata-Version: 2.1
Name: g2pk2
Version: 0.0.1
Summary: g2pk2: updated folk of g2pk module
Home-page: https://github.com/tenebo/g2pk2
Author: tenebo
Author-email: tenebo@naver.com
License: Apache License 2.0
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jamo
Requires-Dist: nltk

# g2pk2
g2pk2 is a updated folk of [Kyubyong's g2pk](https://github.com/Kyubyong/g2pK), which hasn’t been fixed in many years.

It supports Windows, Linux, and macOS based on [harmlessman's g2pk](https://github.com/harmlessman/g2pkk)

## Bug fixed
* 한국어 어문 규범 제15항 (Korean grammar rules chapter 15) https://github.com/Kyubyong/g2pK/issues/6
* Bug in rule https://github.com/Kyubyong/g2pK/pull/13
## Requirements
* python >= 3.6
* jamo
* nltk


## Installation
```
pip install g2pk2
```

## How To Use
g2pk2 uses same syntaxes as g2pk.
```
>>> from g2pk2 import G2p
>>> g2p = G2p()
>>> g2p("포상은 열심히 한 아이에게만 주어지기 때문에 포상인 것입니다.")
'포상은 열심히 한 아이에게만 주어지기 때무네 포상인 거심니다.'
```
If you want more information, check [g2pk](https://github.com/Kyubyong/g2pK)


