This commit is contained in:
bvn13 2024-07-19 09:18:22 +03:00
parent 94113e3025
commit 6bcb13479e
2 changed files with 8 additions and 4 deletions

View File

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

View File

@ -1 +1 @@
0.2.4
0.2.5