Metadata-Version: 2.1
Name: ai-supporter
Version: 0.0.3
Summary: Ai supporter
Home-page: https://github.com/automatethem/ai-supporter
Author: Sang Ki Kwon
Author-email: automatethem@gmail.com
License: MIT
Description-Content-Type: text/markdown
Requires-Dist: gtts
Requires-Dist: pygame

# ai-supporter

https://pypi.org/project/ai-supporter
<pre>
pip install ai-supporter
</pre>

```
from ai_supporter.tts import tts

text = "this is text"
file = "speak.mp3"
tts(text, file)
```

```
from ai_supporter.tts import speak

text = "this is text"
speak(text)
```
