14 lines
324 B
Python
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'
|