-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotify.py
39 lines (25 loc) · 1.06 KB
/
notify.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import asyncio
import os
from aiogram import Bot
from pymongo import MongoClient
client = MongoClient(os.getenv("DB_CONNECTION_STRING"))
db = client['aiogram_fsm']
collection = db['aiogram_data']
print('Aiogram data collection has ' + str(collection.count_documents({})) + " entries")
unique_users: set[int] = set()
for data in collection.find():
unique_users.add(data["chat"])
print("Total number of users: " + str(len(unique_users)))
for user in unique_users:
print(user)
API_TOKEN = os.getenv("BOT_TOKEN")
bot = Bot(token=API_TOKEN)
async def main():
for user in unique_users:
try:
await bot.send_message(user,
text="Привет. У меня вышло обновление! 🆕🆕🆕\n\nЧтобы ничего не упустить нажми на /start\n\nВ менюшке появятся две новые команды: Стикерпак и Словарик. Посмотри, что там) 🦄")
except Exception as e:
print(e)
await bot.close()
asyncio.run(main())