├── Dockerfile ├── LICENSE ├── README.md ├── airflow_settings.yaml ├── dags ├── __pycache__ │ ├── etlweather.cpython-312.pyc │ └── exampledag.cpython-312.pyc ├── etlweather.py └── exampledag.py ├── docker-compose.yml ├── packages.txt ├── requirements.txt └── tests └── dags └── test_dag_example.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/README.md -------------------------------------------------------------------------------- /airflow_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/airflow_settings.yaml -------------------------------------------------------------------------------- /dags/__pycache__/etlweather.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/dags/__pycache__/etlweather.cpython-312.pyc -------------------------------------------------------------------------------- /dags/__pycache__/exampledag.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/dags/__pycache__/exampledag.cpython-312.pyc -------------------------------------------------------------------------------- /dags/etlweather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/dags/etlweather.py -------------------------------------------------------------------------------- /dags/exampledag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/dags/exampledag.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/dags/test_dag_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ETLWeather/HEAD/tests/dags/test_dag_example.py --------------------------------------------------------------------------------