https://github.com/osori/korean-romanizer
A Python library for Korean romanization
https://github.com/osori/korean-romanizer
korean python romanization transliteration
Last synced: about 1 year ago
JSON representation
A Python library for Korean romanization
- Host: GitHub
- URL: https://github.com/osori/korean-romanizer
- Owner: osori
- License: other
- Created: 2017-12-09T15:29:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-17T16:37:32.000Z (over 3 years ago)
- Last Synced: 2025-05-05T19:45:04.218Z (about 1 year ago)
- Topics: korean, python, romanization, transliteration
- Language: Python
- Homepage: https://korean-romanizer.ij.fyi
- Size: 171 KB
- Stars: 102
- Watchers: 2
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome-hangul - korean-romanizer - A python library for Korean romanization (Programming Languages / Python)
README
# korean-romanizer
korean-romanizer is a python module that romanizes Korean text in Hangul into its alphabet equivalent.
It currently follows the [Revised Romanization of Korean](https://www.korean.go.kr/front_eng/roman/roman_01.do) rule developed by the National Institute of Korean Language, the official romanization system being used in the Republic of Korea.
## Usage
### Installation
```bash
pip install korean_romanizer
```
### Basic Usage
```python
from korean_romanizer.romanizer import Romanizer
r = Romanizer("안녕하세요")
r.romanize()
# returns 'annyeonghaseyo'
```