A Simple Python Alarm Clock | TechSource
A Simple Python Alarm Clock
vía A Simple Python Alarm Clock | TechSource.

Solution: Most Linux distributions have Python installed out-of-the-box. All you need is this very simple Python alarm clock script:
import time
import os
not_executed = 1
while(not_executed):
dt = list(time.localtime())
hour = dt[3]
minute = dt[4]
if hour == 5 and minute == 45:
os.popen2(«open /Users/jun/shout.mp3»)
not_executed = 0
Happy Hacking! 🙂
Publicado el 16 diciembre 2010 en Programación, Python y etiquetado en Python. Guarda el enlace permanente. Deja un comentario.
Deja un comentario
Comments 0