Metadata-Version: 2.4
Name: azure_tts_wrapper
Version: 0.1.1
Summary: Simple wrapper for azure tts
Author: Jakanon Clenkk
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: azure-cognitiveservices-speech

# Azure TTS Manager

Minimal Python Text-to-Speech manager using Azure Cognitive Services.  
Plays speech directly to speakers (no audio files).

## Requirements
- Python 3.10+
- Azure Speech subscription key
- azure-cognitiveservices-speech

## basic usage
```py
manager = tts_manager("replace_witch_your_api_key", "northeurope")
manager.speak("Saying text out loud")
```
```py
manager = tts_manager(os.getenv("AZURE_TTS_KEY"), "northeurope")
asyncio.run(manager.speak_async_prefix("(shouting) Saying text out loud"))
```
