replace-bot/utils/announcements.py

30 lines
870 B
Python
Raw Normal View History

2022-02-16 18:13:44 +03:00
import datetime
import asyncio
import aioschedule as schedule
from load import dp, config
from parser import docs_parse
async def announce():
date_now = datetime.datetime.today().weekday()
if (date_now == 5) or (date_now == 6): return
message = "Замены были обновлены, возможно появились изменения!)"
try:
docs_parse()
except Exception:
message = "Ошибка обновления данных!"
if config.admin_user is not None:
for user_id in config.admin_user:
2023-02-03 00:10:35 +03:00
if user_id in config.exclude_send_msg:
continue
2022-02-16 18:13:44 +03:00
await dp.bot.send_message(user_id, message)
async def scheduler():
schedule.every(int(config.anons('time'))).seconds.do(announce)
while True:
await schedule.run_pending()
await asyncio.sleep(5)