Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 374 Bytes

GUIDE.md

File metadata and controls

22 lines (16 loc) · 374 Bytes

ExceptBeep

No setup is required. Use as follows.

from ExceptNotifier import beep

beep()
from ExceptNotifier import ExceptBeep, SendBeep, SuccessBeep

os.environ['BEEP_TIME'] = 3

try:
    print(1/0)
    SuccessBeep().__call__() #sending success beep
except ExceptBeep: #sending except beep
    pass

SendBeep().__call__() #sending beep