airflow.models.xcom_arg
¶
Module Contents¶
-
class
airflow.models.xcom_arg.
XComArg
(operator: BaseOperator, key: str = XCOM_RETURN_KEY)[source]¶ Bases:
airflow.models.taskmixin.TaskMixin
Class that represents a XCom push from a previous operator. Defaults to "return_value" as only key.
- Current implementation supports
xcomarg >> op xcomarg << op op >> xcomarg (by BaseOperator code) op << xcomarg (by BaseOperator code)
Example: The moment you get a result from any operator (decorated or regular) you can
This object can be used in legacy Operators via Jinja.
Example: You can make this result to be part of any generated string
- Parameters
operator (airflow.models.baseoperator.BaseOperator) -- operator to which the XComArg belongs to
key (str) -- key value which is used for xcom_pull (key in the XCom table)
-
__str__
(self)[source]¶ Backward compatibility for old-style jinja used in Airflow Operators
Example: to use XComArg at BashOperator:
- Returns
-
set_upstream
(self, task_or_task_list: Union[TaskMixin, Sequence[TaskMixin]], edge_modifier: Optional[EdgeModifier] = None)[source]¶ Proxy to underlying operator set_upstream method. Required by TaskMixin.