I am currently starting to work on a web server running web.py . If I understand it correctly, the whole thing is implemented as some kind of a loop that listens to the requests at the specified port and reacts accordingly.
I would like the server to perform a certain action at a certain time without a request that triggers it. What is the best way to achieve this? Thank you.