Metadata-Version: 2.1
Name: pymtts
Version: 0.2.1
Summary: A python package for using Azure smart AI speech
Home-page: https://github.com/p1ay8y3ar/pymtts
Author: p1ay8y3ar
Author-email: p1ay8y3ar@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
License-File: LICENSE

# pymtts

A python package for using Azure smart AI speech

## how to install 
```shell
pip3 install --upgrade pymtts
```
## sample use case

```python
from pymtts import async_Mtts
mtts = async_Mtts()
mp3_bytes_buffer = await mtts.mtts("欢迎使用pymtts","zh-CN-YunxiNeural", 'general', 0, 0, )
```
## get all supported voice models

```python
from pymtts import async_Mtts
mtts = async_Mtts()
models= await mtts.get_lang_models()
```
