【问题标题】:I'm writing a telegram bot with python我正在用 python 写一个电报机器人
【发布时间】:2023-04-04 10:54:02
【问题描述】:

我想通过 Python 编写一个电报机器人,但它不起作用。

import telebot

bot = telebot.TeleBot("my_token")

@bot.message_handler(content_types=['text'])
def sending(message):
    bot.send_message(message.chat.id, message.text)


# RUN

bot.polling(non_stop=True)


返回给我以下问题。

AttributeError: 'TeleBot' 对象没有属性 'message_handler'

【问题讨论】:

标签:
python
telegram
telegram-bot