Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

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 month ago
JSON representation

A Python library for Korean romanization

Lists

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'
```