2021-11-27 21:41:39 +03:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
# This is a simple echo bot using the decorator mechanism.
|
|
|
|
# It echoes any incoming text messages.
|
|
|
|
|
|
|
|
from telebot.async_telebot import AsyncTeleBot
|
|
|
|
bot = AsyncTeleBot('TOKEN')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Handle '/start' and '/help'
|
|
|
|
@bot.message_handler(commands=['help', 'start'])
|
|
|
|
async def send_welcome(message):
|
|
|
|
await bot.reply_to(message, """\
|
|
|
|
Hi there, I am EchoBot.
|
|
|
|
I am here to echo your kind words back to you. Just say anything nice and I'll say the exact same thing to you!\
|
|
|
|
""")
|
|
|
|
|
|
|
|
|
|
|
|
# Handle all other messages with content_type 'text' (content_types defaults to ['text'])
|
|
|
|
@bot.message_handler(func=lambda message: True)
|
|
|
|
async def echo_message(message):
|
|
|
|
await bot.reply_to(message, message.text)
|
|
|
|
|
|
|
|
|
2021-12-12 13:07:30 +03:00
|
|
|
import asyncio
|
|
|
|
asyncio.run(bot.polling())
|