Metadata-Version: 2.1
Name: beepki
Version: 0.0.2
Summary: A simple module for making signal when exiting from a block
Home-page: https://github.com/zeionara/beep
Author: Zeio Nara
Author-email: zeionara@gmail.com
License: Apache 2.0
Project-URL: Documentation, https://github.com/zeionara/beep#readme
Project-URL: Bug Reports, https://github.com/zeionara/beep/issues
Project-URL: Source Code, https://github.com/zeionara/beep
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
License-File: LICENSE

# beep

A simple module for making signal when exiting from a block

## Installation

### From PyPI

Install the package with `pip` using the following command:

```sh
pip install beepki
```

### From GitHub

Alternatively, the most recent version of the tool can be pulled directly from this repo:

```sh
pip install git+https://github.com/zeionara/beep
```

## Usage

```py
with beep():
    raise ValueError('What are the beepki after all?')
```
