https://github.com/kindlychung/pybeep
Beeping in python
https://github.com/kindlychung/pybeep
Last synced: 5 months ago
JSON representation
Beeping in python
- Host: GitHub
- URL: https://github.com/kindlychung/pybeep
- Owner: kindlychung
- License: other
- Created: 2014-12-22T12:55:41.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-18T09:20:28.000Z (over 9 years ago)
- Last Synced: 2024-12-07T02:46:29.088Z (6 months ago)
- Language: Python
- Size: 180 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README
- License: LICENSE.txt
Awesome Lists containing this project
README
Description
-----------This is a very simple package that enables you to make a beep sound in python.
Requirements
------------- Python 3
- sox(I have stopped using python for a long time, but according to @Cediddi, you need to `sudo apt-get install libsox-fmt-mp3` on Ubuntu.)
Install
-------Using pip:
~~~~~~~~~~::
pip3 install --upgrade pybeep
Usage
-----::
from pybeep.pybeep import PyVibrate, PyBeep
PyVibrate().beep()
PyVibrate().beepn(3)
PyBeep().beep()
PyBeep().beepn(3)