OLD | NEW |
(Empty) | |
| 1 Advanced Python Scheduler (apscheduler) is a light but powerful in-process task |
| 2 scheduler that lets you schedule functions (or any python callables) to be |
| 3 executed at times of your choosing. |
| 4 |
| 5 The development of apscheduler was heavily influenced by the `Quartz |
| 6 <http://www.opensymphony.com/quartz/>`_ task scheduler written in Java, |
| 7 although APScheduler cannot claim as many features. |
| 8 |
| 9 |
| 10 Features |
| 11 ======== |
| 12 |
| 13 * No external dependencies |
| 14 * Thread-safe API |
| 15 * Cron-like scheduling |
| 16 * Delayed scheduling of single fire jobs (like the UNIX "at" command) |
| 17 * Interval-based scheduling of jobs, with configurable start date and |
| 18 repeat count |
| 19 |
| 20 |
| 21 Documentation |
| 22 ============= |
| 23 |
| 24 Documentation can be found on the `APScheduler site |
| 25 <http://packages.python.org/APScheduler/>`_. |
| 26 |
| 27 |
| 28 Source |
| 29 ====== |
| 30 |
| 31 The source can be browsed at `Bitbucket |
| 32 <http://bitbucket.org/agronholm/apscheduler/src/>`_. |
OLD | NEW |