: A built-in mechanism for tasks to "push" (store) and "pull" (retrieve) small pieces of data.
To differentiate "exclusive" use cases, it is helpful to understand the standard XCom framework: Airflow Xcoms - DEV Community
def pull_task(**context): value = context['ti'].xcom_pull(key='my_key', task_ids='push_task')
Airflow Xcom - Exclusive
: A built-in mechanism for tasks to "push" (store) and "pull" (retrieve) small pieces of data.
To differentiate "exclusive" use cases, it is helpful to understand the standard XCom framework: Airflow Xcoms - DEV Community
def pull_task(**context): value = context['ti'].xcom_pull(key='my_key', task_ids='push_task')