Metadata-Version: 2.4
Name: romanization
Version: 2.0.1
Summary: Revised Romanization of Korean
Home-page: https://github.com/joumaico/romanization
Author: Joumaico Maulas
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Revised Romanization of Korean

This software converts Korean Hangul text into Latin alphabet, following the guidelines of the Revised Romanization of Korean which ensures accurate and consistent transliteration. It's particularly useful for applications in language learning, text processing, and international communication, making it easier for non-Korean speakers to read and pronounce Korean words.

## Installation

```
Dependencies:

- Python 3.11, 3.12, 3.13, 3.14

Installation:

$ pip install romanization
```

## Usage

```python
>>> from romanization import romanize

>>> romanize("좋아 첫 눈에 반해 버린")
"joha cheot nune banhae beorin"
```

## References

- https://en.wikipedia.org/w/index.php?title=Revised_Romanization_of_Korean&oldid=1064463473
