python-jamo
python-jamo copied to clipboard
Hangul syllable decomposition and synthesis using jamo.
consider adding romanization util, e.g. https://github.com/Kyubyong/g2pK/blob/bfecb82ab669e76ef312111d524d2f16de669ba3/g2pk/utils.py
declare encoding for python files.
jamo.stroke(hangul character) inspired by http://godoc.org/github.com/suapapa/go_hangul
Add a function to translate [enclosed](https://en.wikipedia.org/wiki/Enclosed_CJK_Letters_and_Months_%28Unicode_block%29) cjk to hcj. Do the same for [half and full width forms](https://en.wikipedia.org/wiki/Halfwidth_and_Fullwidth_Forms_%28Unicode_block%29)
example inputs: ㅎㅏㄴ ㅎㅏㅎㅏㅎㅏ Mixing roman characters with jamo: ㅈㅏㅁㅗ should produce 한 하하하 Mixing roman characters with jamo: 자모
Trie
It would be interesting to build an example project that did an jamo-level autocomplete. Maybe not fitting for this repo, but worth playing with.
Looking at the Git history for `jamo/__init__.py` indicates that two new releases should have been made of the library, 0.4.2 and 0.4.3, but neither of them are available on PyPI:...