Metadata-Version: 2.4
Name: pybopomofo2hangul
Version: 1.0.5
Summary: ㄅㄆㄇㄈ音轉韓字
Home-page: https://github.com/luswdev/python-bopomofo2hangul
Author: LuSkywalker
Author-email: callumlu@gmail.com
License: MIT
Keywords: bopomofo,hangul
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pypinyin
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Dynamic: author
Dynamic: author-email
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# python-bopomofo2hangul

Translate Ｍandarin to Hangul (한글) from bopomofo (ㄅㄆㄇㄈ).
Refer to **중국어의 한글 표기** from National Institute of the Korean Language.

## Installation

```bash
pip install pybopomofo2hangul
```

## Usage

```py
from pybopomofo2hangul import bopomofo_to_hangul

fromStr = "你好，世界"
outStr = bopomofo_to_hangul(fromStr)

print(outStr)   # will output like: "니하오，스제！"
```

## Dependencies 

- [python-pinyin](https://github.com/mozillazg/python-pinyin)
