This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| import unicodecsv | |
| from datetime import datetime as dt | |
| from airflow.models import BaseOperator | |
| from airflow.utils.decorators import apply_defaults | |
| from airflow.exceptions import AirflowException | |
| from airflow.hooks.postgres_hook import PostgresHook | |
| from airflow.plugins_manager import AirflowPlugin | |
| from psycopg2.extras import DictCursor |