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
- Host: GitHub
- URL: https://github.com/osori/korean-romanizer
- Owner: osori
- License: other
- Created: 2017-12-09T15:29:20.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-17T16:37:32.000Z (almost 2 years ago)
- Last Synced: 2024-05-14T11:20:33.365Z (7 months ago)
- Topics: korean, python, romanization, transliteration
- Language: Python
- Homepage: https://korean-romanizer.ij.fyi
- Size: 171 KB
- Stars: 90
- Watchers: 3
- Forks: 8
- Open Issues: 2
-
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 Romanizerr = Romanizer("안녕하세요")
r.romanize()
# returns 'annyeonghaseyo'
```