File size: 359 Bytes
16bfc87 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import logging
import sys
import telegram
from telegram import Bot
from dtb.settings import TELEGRAM_TOKEN
bot = Bot(TELEGRAM_TOKEN)
TELEGRAM_BOT_USERNAME = bot.get_me()["username"]
# Global variable - the best way I found to init Telegram bot
try:
pass
except telegram.error.Unauthorized:
logging.error("Invalid TELEGRAM_TOKEN.")
sys.exit(1)
|