Metadata-Version: 2.1
Name: mykoreanromanizer
Version: 0.1.8
Summary: Korean romanizer based on the Revised Romanization of Korean
Home-page: https://github.com/teresagarcia/my-korean-romanizer
Author: Teresa Garcia
Author-email: teresagar181@gmail.com
License: UNKNOWN
Keywords: Korean,Romanizer
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: jamo

# My Korean Romanizer
Korean romanizer based on the Revised Romanization of Korean.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install My Korean Romanizer.

```bash
pip install mykoreanromanizer
```

## Usage
```python
from mykoreanromanizer import Romanizer

r = Romanizer()

r.romanize("안녕하세요")  # returns  "annyeonghaseyo"
r.romanize("안녕이란 말 hello hello") # returns  "annyeongiran mal hello hello"
```


