Metadata-Version: 2.1
Name: say-me-something
Version: 0.1.0
Summary: Lots of cyber security tool
Home-page: https://github.com/onuratakan/say_me_something
Author: Onur Atakan ULUSOY
Author-email: atadogan06@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE


# Say Me Something
A text to speak library with embedded cache system.
# Install
```
pip3 install say-me-something
```
# Using
## In another script
```python
from say_me_something import say

# say(text = None, language = "en", no_cache = False, reset = False, no_speak = False)

say("Hello")
```
## In command line
```console
  -h, --help            show this help message and exit
  -t TEXT [TEXT ...], --text TEXT [TEXT ...]
                        Text
  -l LANGUAGE, --language LANGUAGE
                        Language
  -nc, --nocache        No cache
  -r, --reset           Reset (removing the caches)
  -ns, --nospeak        No speak
```

```console
say -t Hello
```


