Files
alert_bot/syms.py
2025-11-29 23:34:26 +01:00

14 lines
324 B
Python

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'