METADATA 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. Metadata-Version: 2.0
  2. Name: APScheduler
  3. Version: 3.2.0
  4. Summary: In-process task scheduler with Cron-like capabilities
  5. Home-page: https://github.com/agronholm/apscheduler
  6. Author: Alex Grönholm
  7. Author-email: apscheduler@nextday.fi
  8. License: MIT
  9. Keywords: scheduling cron
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Programming Language :: Python
  15. Classifier: Programming Language :: Python :: 2.7
  16. Classifier: Programming Language :: Python :: 3
  17. Classifier: Programming Language :: Python :: 3.3
  18. Classifier: Programming Language :: Python :: 3.4
  19. Classifier: Programming Language :: Python :: 3.5
  20. Requires-Dist: pytz
  21. Requires-Dist: setuptools (>=0.7)
  22. Requires-Dist: six (>=1.4.0)
  23. Requires-Dist: tzlocal (>=1.2)
  24. Requires-Dist: funcsigs; python_version == "2.7"
  25. Requires-Dist: futures; python_version == "2.7"
  26. .. image:: https://travis-ci.org/agronholm/apscheduler.svg?branch=master
  27. :target: https://travis-ci.org/agronholm/apscheduler
  28. :alt: Build Status
  29. .. image:: https://coveralls.io/repos/github/agronholm/apscheduler/badge.svg?branch=master
  30. :target: https://coveralls.io/github/agronholm/apscheduler?branch=master
  31. :alt: Code Coverage
  32. Advanced Python Scheduler (APScheduler) is a Python library that lets you schedule your Python code to be executed
  33. later, either just once or periodically. You can add new jobs or remove old ones on the fly as you please. If you store
  34. your jobs in a database, they will also survive scheduler restarts and maintain their state. When the scheduler is
  35. restarted, it will then run all the jobs it should have run while it was offline [#f1]_.
  36. Among other things, APScheduler can be used as a cross-platform, application specific replacement to platform specific
  37. schedulers, such as the cron daemon or the Windows task scheduler. Please note, however, that APScheduler is **not** a
  38. daemon or service itself, nor does it come with any command line tools. It is primarily meant to be run inside existing
  39. applications. That said, APScheduler does provide some building blocks for you to build a scheduler service or to run a
  40. dedicated scheduler process.
  41. APScheduler has three built-in scheduling systems you can use:
  42. * Cron-style scheduling (with optional start/end times)
  43. * Interval-based execution (runs jobs on even intervals, with optional start/end times)
  44. * One-off delayed execution (runs jobs once, on a set date/time)
  45. You can mix and match scheduling systems and the backends where the jobs are stored any way you like.
  46. Supported backends for storing jobs include:
  47. * Memory
  48. * `SQLAlchemy <http://www.sqlalchemy.org/>`_ (any RDBMS supported by SQLAlchemy works)
  49. * `MongoDB <http://www.mongodb.org/>`_
  50. * `Redis <http://redis.io/>`_
  51. APScheduler also integrates with several common Python frameworks, like:
  52. * `asyncio <http://docs.python.org/3.4/library/asyncio.html>`_ (:pep:`3156`)
  53. * `gevent <http://www.gevent.org/>`_
  54. * `Tornado <http://www.tornadoweb.org/>`_
  55. * `Twisted <http://twistedmatrix.com/>`_
  56. * `Qt <http://qt-project.org/>`_ (using either `PyQt <http://www.riverbankcomputing.com/software/pyqt/intro>`_
  57. or `PySide <http://qt-project.org/wiki/PySide>`_)
  58. .. [#f1] The cutoff period for this is also configurable.
  59. Documentation
  60. -------------
  61. Documentation can be found `here <http://readthedocs.org/docs/apscheduler/en/latest/>`_.
  62. Source
  63. ------
  64. The source can be browsed at `Github <https://github.com/agronholm/apscheduler>`_.
  65. Reporting bugs
  66. --------------
  67. A `bug tracker <https://github.com/agronholm/apscheduler/issues>`_ is provided by Github.
  68. Getting help
  69. ------------
  70. If you have problems or other questions, you can either:
  71. * Ask on the ``#apscheduler`` channel on `Freenode IRC <http://freenode.net/irc_servers.shtml>`_
  72. * Ask on the `APScheduler Google group <http://groups.google.com/group/apscheduler>`_, or
  73. * Ask on `StackOverflow <http://stackoverflow.com/questions/tagged/apscheduler>`_ and tag your question with the
  74. ``apscheduler`` tag