telegram bot to send msg to users

This commit is contained in:
andrea
2025-11-29 23:34:26 +01:00
parent 1f28d73ae6
commit 08ada11e75
5 changed files with 64 additions and 0 deletions

13
syms.py Normal file
View File

@@ -0,0 +1,13 @@
try:
from local_settings import TOKEN
except:
print('alert_bot FATAL: add bot token here: local_settings.py')
TOKEN= ''
try:
from local_settings import USERS
except:
print('alert_bot FATAL: add bot users here: local_settings.py')
USERS= []
TELEGRAM_API_URL = f'https://api.telegram.org/bot{TOKEN}/sendMessage'