aboutsummaryrefslogtreecommitdiffstats
path: root/onceaday.py
blob: 5bebc5453a8fe0f40a4fb424fd53327a92e0af06 (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)