电报bot不打印任何内容

时间:2019-08-16 19:19:25

标签: python python-3.x telegram telegram-bot python-telegram-bot

我用Python制作了一个电报机器人,但它不起作用,也不打印任何内容。 如何解决该问题?

代码:

from telegram.ext import Updater, CommandHandler
Update = Updater("78****55:AAEBv*********************qv5q49akk", use_context=True)

def start(update, context):
    context.bot.send_message(chat_id=update.message.chat_id, text="Welcome to our Bot")

start_command = CommandHandler('start', start)
Update.dispatcher.add_handler(start_command)
Update.start_polling()

0 个答案:

没有答案