├── README.md ├── module-1 ├── streamlit.py └── transformations.sql ├── module-2 ├── frostbyte_weathersource.sql ├── load_from_cli_stage.sql ├── load_tasty_bytes.sql ├── sample_menu.sql └── sample_orders.csv ├── module-3 ├── hamburg_sales.sql ├── hamburg_sales_dynamic_table.sql ├── hamburg_sales_expanded.sql ├── hamburg_sales_snowpark.ipynb ├── hamburg_sales_vs_code.sql ├── orders_header_sproc.sql ├── orders_header_stream.sql └── udf_temp_length.sql ├── module-4 ├── snowflake-native-app │ └── hamburg_weather_native_app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ ├── README.md │ │ ├── manifest.yml │ │ ├── setup_script.sql │ │ └── ui │ │ │ ├── environment.yml │ │ │ └── streamlit.py │ │ ├── scripts │ │ └── setup-package-script.sql │ │ └── snowflake.yml └── streamlit-in-snowflake │ └── streamlit_weather_hamburg.py └── module-5 ├── dag_email_integration.sql └── orders_header_task.sql /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/README.md -------------------------------------------------------------------------------- /module-1/streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-1/streamlit.py -------------------------------------------------------------------------------- /module-1/transformations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-1/transformations.sql -------------------------------------------------------------------------------- /module-2/frostbyte_weathersource.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-2/frostbyte_weathersource.sql -------------------------------------------------------------------------------- /module-2/load_from_cli_stage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-2/load_from_cli_stage.sql -------------------------------------------------------------------------------- /module-2/load_tasty_bytes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-2/load_tasty_bytes.sql -------------------------------------------------------------------------------- /module-2/sample_menu.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-2/sample_menu.sql -------------------------------------------------------------------------------- /module-2/sample_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-2/sample_orders.csv -------------------------------------------------------------------------------- /module-3/hamburg_sales.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/hamburg_sales.sql -------------------------------------------------------------------------------- /module-3/hamburg_sales_dynamic_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/hamburg_sales_dynamic_table.sql -------------------------------------------------------------------------------- /module-3/hamburg_sales_expanded.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/hamburg_sales_expanded.sql -------------------------------------------------------------------------------- /module-3/hamburg_sales_snowpark.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/hamburg_sales_snowpark.ipynb -------------------------------------------------------------------------------- /module-3/hamburg_sales_vs_code.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/hamburg_sales_vs_code.sql -------------------------------------------------------------------------------- /module-3/orders_header_sproc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/orders_header_sproc.sql -------------------------------------------------------------------------------- /module-3/orders_header_stream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/orders_header_stream.sql -------------------------------------------------------------------------------- /module-3/udf_temp_length.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-3/udf_temp_length.sql -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/.gitignore: -------------------------------------------------------------------------------- 1 | snowflake.local.yml 2 | output/** 3 | -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/README.md -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/app/README.md -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/app/manifest.yml -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/app/setup_script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/app/setup_script.sql -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/app/ui/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/app/ui/environment.yml -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/app/ui/streamlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/app/ui/streamlit.py -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/scripts/setup-package-script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/scripts/setup-package-script.sql -------------------------------------------------------------------------------- /module-4/snowflake-native-app/hamburg_weather_native_app/snowflake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/snowflake-native-app/hamburg_weather_native_app/snowflake.yml -------------------------------------------------------------------------------- /module-4/streamlit-in-snowflake/streamlit_weather_hamburg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-4/streamlit-in-snowflake/streamlit_weather_hamburg.py -------------------------------------------------------------------------------- /module-5/dag_email_integration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-5/dag_email_integration.sql -------------------------------------------------------------------------------- /module-5/orders_header_task.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/modern-data-engineering-snowflake/HEAD/module-5/orders_header_task.sql --------------------------------------------------------------------------------