Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.04 KB

README.md

File metadata and controls

41 lines (29 loc) · 1.04 KB

Baruda

Python package README in Korean

"Baruda"("바루다") is a pure Korean word that means "fix or correct things"

Setup

  • Source install

      python setup.py install
    
  • PYPI install

      pip install baruda
    

Usage

  • jamofix() : Fix Hangul Jamo-level typos and synthesize broken Hangul syllables.

ex. "ㅇㅣㄱㅓ 진짴ㅋㅋ ㄷㅚ욬ㅋ" -> "이거 진짜ㅋㅋㅋ 되요ㅋ"

from baruda import jamofix

s = "ㅇㅣㄱㅓ 진짴ㅋㅋ ㄷㅚ욬ㅋ"
print(jamofix(s))
# >>> "이거 진짜ㅋㅋㅋ 되요ㅋ"

Reference