Answer the question
In order to leave comments, you need to log in
How to make a delayed send?
Tell me how to implement, please. Let's say I have a command that, after calling it, sends a certain text. How can I make this command run automatically? (For example, at 13:00 and 18:00) (On all servers where there is a bot)
Thank you.
Answer the question
In order to leave comments, you need to log in
The task is not entirely clear, either to do something by cron on each server, or inside the bot according to the schedule inside the bot.
from threading import Thread
import schedule
def sheduler():
schedule.every().day.at("12:00").do(daily_notify)
while True:
schedule.run_pending()
sleep(1)
def daily_notify():
pass
#bot send text
Thread(target=sheduler, args=()).start()
The bot writes the launch time, the task from the cron performs this task on time.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question