Metadata-Version: 2.4
Name: speakflow
Version: 1.2.1
Summary: Real-time speech output engine for Python
Author: Shiwam Kumar
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: TTS
Requires-Dist: sounddevice
Requires-Dist: numpy
Requires-Dist: scipy
Dynamic: license-file

# SpeakFlow

Turn `print()` into speech — without the pain.

```python
from speakflow import say

say("build complete")
say("error detected")
```

## Why SpeakFlow?

Raw TTS is painful:
- blocks execution
- overlaps audio
- no caching
- breaks with devices

SpeakFlow fixes it:
- queued speech (no overlap)
- async playback
- caching (fast repeated phrases)
- stable audio handling

## Install

```bash
pip install speakflow
```

## Example

```python
from speakflow import say, wait

say("hello")
say("done")
wait()
```
