Metadata-Version: 2.2
Name: pyhan
Version: 0.0.11
Summary: 漢字處理工具，python實現。
Home-page: https://github.com/lizongying/pyhan
Author: Li ZongYing
Author-email: lizongying@msn.com
Project-URL: Bug Tracker, https://github.com/lizongying/pyhan/issues
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
License-File: LICENSE

# 漢字

漢字處理工具，python實現。
目前支持簡體字轉漢字。

## all language

## install

```
pip install pyhan
```

## example

```
from pyhan import to_traditional

if __name__ == '__main__':
    res = to_traditional('萝卜去哪了，可以在茶几卜上几卦')
    print(res)
```
