WSGI Event Planning

I wrote a Python application that reads a task database, and sched.enter () reads these tasks at various intervals. Each task is rebuilt as it is completed.

I would like to integrate this application with the WSGI infrastructure so that tasks can be added or removed in response to HTTP requests. I suppose I could use XML-RPC to communicate between the framework process and the task engine, but I would like to know if there is an infrastructure that has built-in event scheduling that can be modified via HTTP.

+3
source share
1 answer

, - Celery. Python, , crontab.

2.0 Django, .

+3

Source: https://habr.com/ru/post/1762940/


All Articles