An in-process scheduler for periodic jobs that uses the builder pattern for configuration. Schedule lets you run Python functions (or any other callable) periodically at pre-determined intervals using a simple, human-friendly syntax.
Maybe use this for exocortex_xmpp_bridge when I migrate off of SleekXMPP?
schedule.every().minute.at(":17").do(process_bridge_queues)
schedule.run_pending()
Asyncoro is a Python framework for writing massively distributed applications. Designed to work in an asynchronous fashion (including non-blocking network socket handling) on as many OSes as possible. Supports SSL, locking, execution of routines on remote systems, and hot-swapping of code. Even does asynchronous database access.