Metadata-Version: 2.1
Name: kospellpy
Version: 0.0.3
Summary: Korean Spell Checker
Home-page: https://github.com/Kangsukmin/koSpellPy
Author: decyma
Author-email: soos3121@gmail.com
License: MIT
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
License-File: LICENSE

[한국어 문서](./README_ko.md)

# koSpellPy

Korean Spell checker

# How to use

## Install

```
pip install kospellpy
```

## Use

```python
from kospellpy import spell_init

spell_checker = spell_init() # default: busan spell check
                             # if you want to use naver_spell_check, just use spell_init('naver')

text = "인공지능이너무 재밓따!"

print(spell_checker(text))
>> 인공지능이 너무 재밌다!
```


