

import inspect import os import pickle import shutil import sys import types import warnings from tempfile import TemporaryDirectory from textwrap import dedent from typing import Any, Callable, Collection, Dict, Iterable, List, Mapping, Optional, Sequence, Union import dill from airflow.exceptions import AirflowException from import BaseOperator from import SkipMixin from import _CURRENT_CONTEXT from import Context, context_copy_partial, context_merge from _helpers import KeywordParameters from _utils import execute_in_subprocess from _virtualenv import prepare_virtualenv, write_python_script See the License for the # specific language governing permissions and limitations # under the License.
Airflow python software#
You may obtain a copy of the License at # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License") you may not use this file except in compliance # with the License.

See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements.
