Metadata-Version: 2.1
Name: StreamAudio
Version: 0.1.0
Summary: A Python package for real-time audio streaming in memory for flexible use cases
Home-page: https://github.com/yourusername/streamaudio
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: pyaudio

# StreamAI

**StreamAI** is a Python package designed for real-time audio streaming directly from the microphone. The audio is stored in memory, and the package provides a flexible way to handle or send the audio data to external applications or services in real time.

## Features
- Stream audio from the microphone directly into memory (without saving to disk).
- Handle audio data with a callback function to process it as needed (e.g., send to an API, analyze, etc.).
- Ideal for real-time applications such as voice-controlled systems or audio analysis.

## Installation

You can install **StreamAI** using pip:

```bash
pip install streamai
