aboutsummaryrefslogtreecommitdiffstats
path: root/onceaday.py
blob: 80285640c72a919ba7622ca01830e075aac6664c (plain)
1
2
3
4
5
6
7
8
9
10
import subreddit
from time import sleep

SECONDS_IN_DAY = 24 * 60 * 60

while True:
    sleep(60 * 60 * 13)
    subreddit.every_day()
    print("Called @ %s" % subreddit.get_time())
    sleep(60 * 60 * 11)