skip to Main Content

basic telegram bot example

I am recreating the basic telegram bot example from here, but I am having a slight problem. import logging from telegram.ext import Updater, CommandHandler, MessageHandler, Filters # Enable logging logging.basicConfig(format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',level=logging.INFO) logger = logging.getLogger(__name__) #…

VIEW QUESTION
Back To Top
Search