aboutsummaryrefslogtreecommitdiffstats
path: root/onceaday.py
blob: 0be0c2f6db3939fe032b2549712e248bd51fa13a (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 * 24)