Metadata-Version: 2.4
Name: texttospeech-sundar
Version: 1.0.0
Summary: Hybrid online+offline text-to-speech package
Author: Sundarapandi T
License: MIT License
Project-URL: Homepage, https://pypi.org/project/texttospeech-sundar/
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gtts
Requires-Dist: playsound
Requires-Dist: pyttsx3
Dynamic: license-file

# texttospeech-sundar

A simple hybrid text-to-speech package that works **online and offline**.

## Features
- Online mode → High-quality Google TTS (gTTS)
- Offline mode → pyttsx3 (works without internet)
- Auto-detection of internet
- Ability to save or directly play the audio


## Usage
```python
from texttospeech_sundar import tts_sundar

tts_sundar("Hello welcome")
path = tts_sundar("Hello world!", play_audio=False, save_path="output.mp3")
print(path)
