Metadata-Version: 2.1
Name: python-beep
Version: 1.0.0
Summary: A Python module to generate sounds
Home-page: https://github.com/donno2048/beep
Author: Elisha Hollander
Author-email: just4now666666@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/donno2048/beep#readme
Project-URL: Bug Reports, https://github.com/donno2048/beep/issues
Project-URL: Source Code, https://github.com/donno2048/beep
Platform: win32
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# beep

A Python module to generate sounds

## Installation

### From PyPI

```sh
pip3 install python-beep
```

### From GitHub

```sh
pip3 install git+https://github.com/donno2048/beep
```

## Usage

```py
from beep import beep
frequency = 327
duration = 1000
beep(frequency, duration) # duration in ms, frequency in Hz
```
