remember-remember-bot/src/remember_remember_bot/loop.py

22 lines
382 B
Python
Raw Normal View History

import time
import datetime
def loop():
current_day = 0
while True:
if check_new_day(current_day):
pass
print(current_day)
current_day = update_day()
time.sleep(1)
def check_new_day(current_day):
if current_day == datetime.datetime.now().day:
return True
def update_day():
return datetime.datetime.now().day