incubator-airflow/docs/code.rst

33 строки
772 B
ReStructuredText

Code / API
==========
Models
------
Models are built on top of th SQLAlchemy ORM Base class, instance are
persisted in the database.
.. automodule:: models
:show-inheritance:
:members: DAG, BaseOperator, TaskInstance, DagBag, DatabaseConnection
Operators
---------
Operators allows to generate a certain type of task on the graph.
.. automodule:: operators
:members: MySqlOperator, BashOperator, MySqlSensorOperator, ExternalTaskSensor, HiveOperator
:show-inheritance:
:members: MySqlOperator, BashOperator, MySqlSensorOperator, ExternalTaskSensor
Hooks
-----
.. automodule:: hooks
:show-inheritance:
:members: MySqlHook
Executors
---------
.. automodule:: executors
:show-inheritance:
:members: LocalExecutor, SequentialExecutor