Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import schedule
  2. import time
  3. import app
  4.  
  5. schedule.every(3).seconds.do(app.run)
  6. while 1:
  7. try:
  8. schedule.run_pending()
  9. except Exception as e:
  10. print e
  11. pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement