pyrogram/docs/source/topics/scheduling.rst
2019-08-01 10:11:29 +03:00

68 lines
1.4 KiB
ReStructuredText

Scheduling tasks
================
Pyrogram itself as Telegram MTProto API Framework contains only stuff
related to Telegram. Scheduling is out of it's scope.
But it is easy to integrate pyrogram with your favourite scheduler.
schedule
--------
.. code-block:: python
import time
import schedule
def job():
app.send_message("me", "Hi!")
schedule.every(3).seconds.do(job)
with app:
while True:
schedule.run_pending()
time.sleep(1)
Note that schedule is not suitable for async version of pyrogram.
For more information read `library <https://schedule.readthedocs.io/>`_ docs.
apscheduler
-----------
.. code-block:: python
import time
from apscheduler.schedulers.background import BackgroundScheduler
def job():
app.send_message("me", "Hi!")
scheduler = BackgroundScheduler()
scheduler.add_job(job, 'interval', seconds=3)
scheduler.start()
app.run()
Apscheduler supports async version of pyrogram too, here is async example:
.. code-block:: python
from apscheduler.schedulers.asyncio import AsyncIOScheduler
async def job():
await app.send_message("me", "Hi!")
scheduler = AsyncIOScheduler()
scheduler.add_job(job, 'interval', seconds=3)
scheduler.start()
app.run()
For more information read `library <https://apscheduler.readthedocs.io/>`_ docs.