Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 976 Bytes

sqlalchemy.rst

File metadata and controls

28 lines (20 loc) · 976 Bytes
.. automodule:: apscheduler.jobstores.sqlalchemy

API

.. autoclass:: SQLAlchemyJobStore(url=None, engine=None, tablename='apscheduler_jobs', metadata=None, pickle_protocol=pickle.HIGHEST_PROTOCOL)
    :show-inheritance:


Introduction

SQLAlchemyJobStore stores jobs in any relational database management system supported by SQLAlchemy. It can use either a preconfigured Engine or you can pass it a connection URL.

External dependencies SQLAlchemy (+ the backend specific driver package)
Example examples/jobstores/sqlalchemy_.py (view online).