From a85b6498b8cd72447e00dd9dbf3c8e55b273e98a Mon Sep 17 00:00:00 2001 From: Bijan Soltani <46958547+soltanianalytics@users.noreply.github.com> Date: Mon, 24 Jan 2022 15:28:24 +0100 Subject: [PATCH] Add a link to the DAG model in the Python API reference (#21060) (cherry picked from commit 160f2e0f1e39e7fdfc56a9248ac32c3a6cb3dae6) --- docs/apache-airflow/python-api-ref.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/apache-airflow/python-api-ref.rst b/docs/apache-airflow/python-api-ref.rst index 591bb84f5ecca..e8c4dff3c499c 100644 --- a/docs/apache-airflow/python-api-ref.rst +++ b/docs/apache-airflow/python-api-ref.rst @@ -20,6 +20,12 @@ Python API Reference ==================== +.. _pythonapi:dags: + +DAGs +--------- +The DAG is Airflow's core model that represents a recurring workflow. Check out :class:`~airflow.models.dag.DAG` for details. + .. _pythonapi:operators: Operators