├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── hooks ├── __init__.py └── google_analytics_hook.py ├── operators ├── __init__.py ├── google_analytics_account_summaries_to_s3_operator.py └── google_analytics_reporting_to_s3_operator.py ├── requirements.txt └── schemas ├── __init__.py └── google_analytics_schemas.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airflow-plugins/google_analytics_plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Airflow Plugin - Google analytics 2 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airflow-plugins/google_analytics_plugin/HEAD/__init__.py -------------------------------------------------------------------------------- /hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hooks/google_analytics_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airflow-plugins/google_analytics_plugin/HEAD/hooks/google_analytics_hook.py -------------------------------------------------------------------------------- /operators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /operators/google_analytics_account_summaries_to_s3_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airflow-plugins/google_analytics_plugin/HEAD/operators/google_analytics_account_summaries_to_s3_operator.py -------------------------------------------------------------------------------- /operators/google_analytics_reporting_to_s3_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airflow-plugins/google_analytics_plugin/HEAD/operators/google_analytics_reporting_to_s3_operator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airflow-plugins/google_analytics_plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/google_analytics_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airflow-plugins/google_analytics_plugin/HEAD/schemas/google_analytics_schemas.py --------------------------------------------------------------------------------