Metadata-Version: 2.4
Name: cn2vn
Version: 0.2.0
Summary: A library to convert Chinese text to Vietnamese using Sino-Vietnamese readings
Home-page: https://github.com/jetaudio.media/cn2vn
Author: jetaudio.media
Author-email: jetaudio.media@gmail.com
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# Cn2vn

A Python library to convert Chinese text to Vietnamese using Sino-Vietnamese readings.

## Installation

```bash
pip install cn2vn
```

## Usage

```python
from cn2vn import cn2vn

chinese_text = "王小明"
vietnamese = cn2vn(chinese_text)
print(vietnamese)  # Output: Vương Tiểu Minh (example)
```

## Features

- Converts Chinese characters to their Vietnamese equivalents based on Sino-Vietnamese pronunciation.
- Handles unknown characters by leaving them unchanged.

## Requirements

- Python 3.6+

## License

MIT
