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.
source
share