Schedule Bot
بات برنامه ریزی
این بات علاوه بر اینکه جواب پیام های شما رو میده، برنامه ریزی شده تا هر دقیقه توی یک چت یک پیام ارسال کنه
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from asyncio import sleep
from balethon import Client
bot = Client("TOKEN")
CHAT_ID = 1234567890
@bot.on_initialize()
async def task(client):
while True:
await client.send_message(CHAT_ID, "Some scheduled message...")
await sleep(60)
@bot.on_message()
async def answer_message(message):
await message.reply("Hello I'm the schedule bot")
bot.run()
This post is licensed under CC BY 4.0 by the author.