Metadata-Version: 2.4
Name: sond
Version: 1.1.1
Summary: Simple sound library
Description-Content-Type: text/markdown
Dynamic: description
Dynamic: description-content-type
Dynamic: summary

# sond

Simple and lightweight sound library for Python.

`sond` is a minimal audio library written in C that allows you to play sounds easily from Python without installing large multimedia frameworks.

It uses the Windows multimedia API, so it works fast and has no external dependencies.

## Installation

```bash
pip install sond
```

## Features

* Play WAV and MP3 files
* Play sound in background
* Pause and resume audio
* Stop playback
* Change volume
* Delay playback
* Fade out sound

## Example

```python
import sond

# play sound
sond.play("music.mp3")

# play in background
sond.play_async("music.mp3")

# pause playback
sond.pause()

# resume playback
sond.resume()

# change volume
sond.volume(500)

# delay playback
sond.delay(2, "sound.wav")

# fade out
sond.fadeout(3)

# stop sound
sond.stop()
```

## Supported formats

* WAV
* MP3

## Platform

Currently supported platform:

* Windows

## Why use sond?

* Very lightweight
* Simple API
* No heavy dependencies
* Fast native C implementation

## License

MIT License

## Author

Created by AA.
