T
T
typical_user102020-08-29 19:24:14
Bots
typical_user10, 2020-08-29 19:24:14

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

2 answer(s)
A
Alexander, 2020-08-29
@shabelski89

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()

V
Vladimir Korotenko, 2020-08-29
@firedragon

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 question

Ask a Question

731 491 924 answers to any question