Metadata-Version: 2.1
Name: FastHubPy
Version: 0.1
Summary: Utilizes the TTS service from Fasthub.net
Home-page: 
Download-URL: https://github.com/OmegasGithub/FastHubPy/archive/refs/tags/v_01.tar.gz
Author: Me
Author-email: 
License: MIT
Keywords: tts,fasthub,text to speech
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# FastHub TTS Python Module

This Python module provides a convenient interface for interacting with FastHub.net's Text-to-Speech (TTS) service.

## Installation

To install the FastHub TTS Python module, use the following pip command:

```bash
pip install FastHub
```
## Usage
Shouldn't be an issue, use one of the two functions:

```python
PlayTTS()
```
```python
TTStoMP3()
```
There are default parameters, but you can supply your own, the easiest being the *Text* property.

```python
PlayTTS("Hello, World!")
```

These parameters are the same throught the functions, but the ```TTStoMP3()``` function has one additional parameter, *filename* which just tells the program where to save your file/what to call it.  It will automatically add *.mp3* to the end of the name.

The rest are pretty much self explanitory.
