https://github.com/zeionara/beep
A simple package for making signal when exiting from a block
https://github.com/zeionara/beep
Last synced: 3 months ago
JSON representation
A simple package for making signal when exiting from a block
- Host: GitHub
- URL: https://github.com/zeionara/beep
- Owner: zeionara
- License: apache-2.0
- Created: 2023-10-01T22:37:47.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-01T22:38:01.000Z (over 1 year ago)
- Last Synced: 2025-02-02T21:37:49.391Z (4 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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?')
```