mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-17 21:22:40 +00:00
68 lines
1.4 KiB
ReStructuredText
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.
|