patryk126p commented on issue #23727: URL: https://github.com/apache/airflow/issues/23727#issuecomment-1131233034
Here is the complete set of imports from all custom operators/sensors/hooks (somme of the imports are for type hints only): ``` import base64 import json import logging import math import operator import os import pathlib import re import sys import time import typing from collections import namedtuple from contextlib import closing from datetime import datetime, timedelta, timezone from subprocess import PIPE, CompletedProcess, Popen, SubprocessError, run from urllib.parse import urlencode import backoff import certifi import google_auth_httplib2 import httplib2 import newrelic_telemetry_sdk import pandas as pd import psycopg2 import redis import requests import tableauserverclient import yaml from airflow.exceptions import AirflowException, AirflowSensorTimeout from airflow.hooks.base import BaseHook from airflow.models import DAG, BaseOperator, Connection, Variable from airflow.providers.amazon.aws.hooks.s3 import S3Hook from airflow.providers.microsoft.mssql.hooks.mssql import MsSqlHook from airflow.providers.mysql.hooks.mysql import MySqlHook from airflow.providers.postgres.hooks.postgres import PostgresHook from airflow.providers.postgres.operators.postgres import PostgresOperator from airflow.sensors.base import BaseSensorOperator from airflow.sensors.external_task import ExternalTaskSensor from airflow.utils import timezone from airflow.utils.helpers import parse_template_string from botocore.credentials import ReadOnlyCredentials from google.api_core import retry from google.oauth2 import service_account from googleapiclient.discovery import Resource, build from googleapiclient.http import set_user_agent from jinja2 import Template from tabulate import tabulate ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
