Metadata-Version: 2.4
Name: python-beep
Version: 1.0.2
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: project-url
Dynamic: summary

# beep

A Python module to generate sounds

## Installation

> [!WARNING]
> The package will be installed on non-Windows platforms with no errors.
> 
> This is for automation purposes only, as the package will only work on Windows.

### 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
```

## Demo

<https://github.com/donno2048/canon>
