korean-romanizer icon indicating copy to clipboard operation
korean-romanizer copied to clipboard

A Python library for Korean romanization

Results 3 korean-romanizer issues
Sort by recently updated
recently updated
newest added

Hi, I'm processing some multilingual data, but I'm afraid I don't actually know Korean myself. I'm getting an error on this word. I don't know if the word is written...

Hi, apologise, I can't give much insight as to why this throws an error, but: ``` from korean_romanizer.romanizer import Romanizer Romanizer('경인로 34번길 79-2 ㅠ동 201호(숭의').romanize() ``` yields the error: ```...

```python KeyError Traceback (most recent call last) in 1 r = Romanizer("ㅏㄹ") ----> 2 r.romanize() in romanize(self) 290 s = Syllable(char) 291 #try: --> 292 _romanized += onset[s.initial] + vowel[s.medial]...