Post

Echo Bot

بات اکو

اگه به پیوی این بات یه پیام بفرستید با یه پیام با همون متن به شما جواب میده

1
2
3
4
5
6
7
8
9
10
11
12
from balethon import Client
from balethon.conditions import private, text

bot = Client("TOKEN")


@bot.on_message(private & text)
async def echo(message):
    await message.reply(message.text)


bot.run()


پست قبلی: Handling Updates

پست بعدی: Inline Keyboards Bot

This post is licensed under CC BY 4.0 by the author.