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

SECONDS_IN_DAY = 25 * 60 * 60

while True:
    SmallYTChannelBotSubmissions.every_day()
    print("Called @ %s" % SmallYTChannelBotSubmissions.get_time)
    sleep(SECONDS_IN_DAY)