Metadata-Version: 2.4
Name: memesounds
Version: 0.1.0
Summary: Play meme sounds in Python
Author: k17_editz
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# memesounds

A Windows Python meme soundboard package with WAV meme sounds.

This package uses Python's built-in `winsound` module, so playback works on Windows.

Drop new `.wav` files into `memesounds/assets` and they will show up automatically.

## Python usage

```python
import memesounds

memesounds.fart()
memesounds.play_sound("67")
memesounds.play_sound("wow")
memesounds.random_sound()
```

## Command line usage

```powershell
python -m memesounds --list
python -m memesounds fart
python -m memesounds wow
python -m memesounds --random
```

After installing in editable mode:

```powershell
python -m pip install -e .
memesounds --list
memesounds fart
```

## Current included sounds

- `baby`
- `bone_crack`
- `fart`
- `oppa`
- `siren`
- `six_seven`
- `wow`

Any new asset file is available by its filename. For example, `emotional_damage.wav` becomes:

```python
memesounds.play_sound("emotional_damage")
```
