├── .github └── workflows │ └── deploy_demo_objects.yaml ├── .gitignore ├── 00_start_here.ipynb ├── LICENSE ├── README.md ├── environment.yml ├── images └── quickstart_overview.png ├── notebooks ├── 06_load_excel_files │ ├── 06_load_excel_files.ipynb │ └── environment.yml └── 07_load_daily_city_metrics │ ├── 07_load_daily_city_metrics.ipynb │ └── environment.yml ├── requirements.txt └── scripts ├── deploy_notebooks.sql ├── deploy_task_dag.py ├── setup.sql └── teardown.sql /.github/workflows/deploy_demo_objects.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/.github/workflows/deploy_demo_objects.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac files 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /00_start_here.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/00_start_here.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/environment.yml -------------------------------------------------------------------------------- /images/quickstart_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/images/quickstart_overview.png -------------------------------------------------------------------------------- /notebooks/06_load_excel_files/06_load_excel_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/notebooks/06_load_excel_files/06_load_excel_files.ipynb -------------------------------------------------------------------------------- /notebooks/06_load_excel_files/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/notebooks/06_load_excel_files/environment.yml -------------------------------------------------------------------------------- /notebooks/07_load_daily_city_metrics/07_load_daily_city_metrics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/notebooks/07_load_daily_city_metrics/07_load_daily_city_metrics.ipynb -------------------------------------------------------------------------------- /notebooks/07_load_daily_city_metrics/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/notebooks/07_load_daily_city_metrics/environment.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/deploy_notebooks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/scripts/deploy_notebooks.sql -------------------------------------------------------------------------------- /scripts/deploy_task_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/scripts/deploy_task_dag.py -------------------------------------------------------------------------------- /scripts/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/scripts/setup.sql -------------------------------------------------------------------------------- /scripts/teardown.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-data-engineering-with-notebooks/HEAD/scripts/teardown.sql --------------------------------------------------------------------------------