Skip to content

Instantly share code, notes, and snippets.

@birchtree02
birchtree02 / Alarm.py
Last active June 1, 2016 11:03
https://repl.it/CXU6/4 created by birchtree02
# alarm
from time import gmtime, strftime
def alarm():
while True:
if strftime("%H:%M", gmtime()) == alarmtime:
print('wake up')
print('\007')
break