AttributeError: 'Updater' object has no attribute 'dispatcher'
回答 2
浏览 2092
2023-01-02
当我运行这段代码的时候:
from telegram.ext import *
import keys
print('Starting a bot....')
def start_commmand(update, context):
update.message.reply_text('Hello! Welcome To Store!')
if __name__ == '__main__':
updater = Updater(keys.token, True)
dp = updater.dispatcher
# Commands
dp.add.handler(CommandHandler('start', start_commmand))
# Run bot
updater.start_polling(1.0)
updater.idle()
我得到的是这个错误:
Traceback (most recent call last):
File "C:\Users\pc\PycharmProjects\telegram\main.py", line 11, in <module>
dp = updater.dispatcher
AttributeError: 'Updater' object has no attribute 'dispatcher'
我试图通过更新库来解决这个问题,但错误仍然存在。
没有定义
dispatcher
方法。也许你缺少一些lib声明
- error404 2023-01-02
2 个回答
#1楼
已采纳
得票数 2
你可能找到了v13的例子,但几天后,Python-telegram-bot的v20已经出来了。现在你必须以不同的方式构建你的应用程序,并且必须使用异步函数。
这应该是可行的。
from telegram.ext import *
import keys
print('Starting a bot....')
async def start_commmand(update, context):
await update.message.reply_text('Hello! Welcome To Store!')
if __name__ == '__main__':
application = Application.builder().token(keys.token).build()
# Commands
application.add_handler(CommandHandler('start', start_commmand))
# Run bot
application.run_polling(1.0)
另外,这里是一些关于Python-telegram-bot库的好例子。
@AbdullahSultan 很高兴听到这个消息!请接受答案,这样你的问题就被标记为已回答。
- TheShadow75 2023-01-03
#2楼
得票数 0
查看最近的更新日志,我发现了一个针对版本>=20.0a0的bug修复,其中dispatcher不再被使用,但如果你想在该版本中运行你的脚本,你需要安装它pip install python-telegram-bot==13.3
。
from telegram import Update, ForceReply
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters, CallbackContext
def start(update: Update, _: CallbackContext) -> None:
user = update.effective_user
update.message.reply_markdown_v2(
fr'Hi {user.mention_markdown_v2()}\!',
reply_markup=ForceReply(selective=True),
)
def help_command(update: Update, _: CallbackContext) -> None:
update.message.reply_text('Help!')
def run_bot(update: Update, _: CallbackContext) -> None:
replica = update.message.text
answer = bot(replica)
update.message.reply_text(answer)
print(replica)
print(answer)
print()
def main() -> None:
updater = Updater("token")
dispatcher = updater.dispatcher
dispatcher.add_handler(CommandHandler("start", start))
dispatcher.add_handler(CommandHandler("help", help_command))
dispatcher.add_handler(MessageHandler(Filters.text & ~Filters.command, run_bot))
# Initialize bot
updater.start_polling()
updater.idle()
main()