OLD | NEW |
(Empty) | |
| 1 Metadata-Version: 1.0 |
| 2 Name: APScheduler |
| 3 Version: 1.3.1 |
| 4 Summary: In-process task scheduler with Cron-like capabilities |
| 5 Home-page: http://apscheduler.nextday.fi/ |
| 6 Author: Alex Gronholm |
| 7 Author-email: apscheduler@nextday.fi |
| 8 License: MIT |
| 9 Description: Advanced Python Scheduler (apscheduler) is a light but powerful in-
process task |
| 10 scheduler that lets you schedule functions (or any python callables) to
be |
| 11 executed at times of your choosing. |
| 12 |
| 13 The development of apscheduler was heavily influenced by the `Quartz |
| 14 <http://www.opensymphony.com/quartz/>`_ task scheduler written in Java, |
| 15 although APScheduler cannot claim as many features. |
| 16 |
| 17 |
| 18 Features |
| 19 ======== |
| 20 |
| 21 * No external dependencies |
| 22 * Thread-safe API |
| 23 * Cron-like scheduling |
| 24 * Delayed scheduling of single fire jobs (like the UNIX "at" command) |
| 25 * Interval-based scheduling of jobs, with configurable start date and |
| 26 repeat count |
| 27 |
| 28 |
| 29 Documentation |
| 30 ============= |
| 31 |
| 32 Documentation can be found on the `APScheduler site |
| 33 <http://packages.python.org/APScheduler/>`_. |
| 34 |
| 35 |
| 36 Source |
| 37 ====== |
| 38 |
| 39 The source can be browsed at `Bitbucket |
| 40 <http://bitbucket.org/agronholm/apscheduler/src/>`_. |
| 41 Keywords: scheduling cron |
| 42 Platform: UNKNOWN |
| 43 Classifier: Development Status :: 5 - Production/Stable |
| 44 Classifier: Intended Audience :: Developers |
| 45 Classifier: License :: OSI Approved :: MIT License |
| 46 Classifier: Programming Language :: Python |
| 47 Classifier: Programming Language :: Python :: 2.4 |
| 48 Classifier: Programming Language :: Python :: 2.5 |
| 49 Classifier: Programming Language :: Python :: 2.6 |
| 50 Classifier: Programming Language :: Python :: 3 |
OLD | NEW |