Skip to content

Instantly share code, notes, and snippets.

@birchtree02
Last active June 1, 2016 11:03
Show Gist options
  • Save birchtree02/951a26e6f0493e64b643694530e0f7ff to your computer and use it in GitHub Desktop.
Save birchtree02/951a26e6f0493e64b643694530e0f7ff to your computer and use it in GitHub Desktop.
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
alarmtime = input('When would you like to be woken up? (hh:mm)
alarm()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment