Open Source Library, Converting Misspelled English characters into Korean letters (& vice versa)
Python implementation of Inko.js
- Python >= 3.6
python -m pip install inko-py
import inko
myInko = inko.Inko()
or
from inko import Inko
myInko = Inko()
print(myInko.ko2en('ㅗ디ㅣㅐ 재깅!'))
# output: hello world!
print(myInko.en2ko('dkssudgktpdy tptkd!'))
# output: 안녕하세요 세상!
Key | Type | Value | Description |
---|---|---|---|
allowDoubleConsonant | Boolean | True or False | 복자음 설정여부 |
- 인스턴스 생성할 때 생성자의 인자로 설정 부여
from inko import Inko
myInko = Inko(allowDoubleConsonant=True)
config
함수로 설정 부여
myInko.config(allowDoubleConsonant=True)
en2ko
함수의 인자로 설정 부여
myInko.en2ko('rtrt', allowDoubleConsonant=True);
# output: ㄳㄳ
myInko.en2ko('rtrt', {allowDoubleConsonant=False);
# output: ㄱㅅㄱㅅ
- inko-js - Inko javascript library
- inko-cli - Use inko on the command line
- inko-web - Inko official website
- inko-chrome-extension - Inko chrome extension
- alfred-inko - Alfred 3 workflow to convert misspelled English characters into Korean letters (& vice versa)
이 오픈소스 프로젝트에 누구나 기여할 수 있습니다. 기여하고 싶은 분들은 이 레포지토리를 포크한 후 풀리퀘스트 요청해주세요!
Inko.py is released under the MIT License. See LICENSE file for details.
Thanks to Jon Jee(738), the original author of Inko.js