repeat_bot.py 574 B

1234567891011121314151617
  1. #pip install pytelegrambotapi
  2. import telebot
  3. bot = telebot.TeleBot('5664717377:AAFEkcO9HfzOGJbhWaRegwgxQaSR-UxuYPc')
  4. @bot.message_handler(commands=["start"])
  5. def start(m, res=False):
  6. bot.send_message(m.chat.id, "Я от Ильшата. Напиши мне что-то")
  7. @bot.message_handler(content_types=["text"])
  8. def handle_text(message):
  9. bot.send_message(message.chat.id, "Вы написали: " + message.text)
  10. bot.send_message(message.chat.id, "Ильшат доволен, что все работает :)")
  11. bot.polling(none_stop=True, interval=0)