This commit is contained in:
bvn13 2024-07-19 09:10:54 +03:00
parent 9a4be640d1
commit 94113e3025
2 changed files with 4 additions and 3 deletions

View File

@ -49,9 +49,10 @@ if __name__ == "__main__":
bot.send_weather(WeatherTask('shkolniy', "{0}".format(shkolniy_weather)))
def scheduled():
schedule = Scheduler()
schedule = Scheduler(tzinfo=tz_msk)
# schedule.cyclic(dt.timedelta(seconds=10), shkolniy_weather_job)
schedule.daily(dt.time(hour=9, minute=0, tzinfo=tz_msk), shkolniy_weather_job)
schedule.daily(dt.time(hour=9, minute=15, tzinfo=tz_msk), shkolniy_weather_job)
logger.info(schedule)
while True:
schedule.exec_jobs()
time.sleep(1)

View File

@ -1 +1 @@
0.2.3
0.2.4