├── .gitignore ├── 01-introduction └── README.md ├── 02-multidimensional_modelling └── README.md ├── 03-dimensions ├── README.md ├── create_structures.py ├── dimensions.ipynb ├── load-01.py ├── load-02.py └── load-03.py ├── 04-star_schema └── README.md ├── 05-slowly_changing_dimensions └── README.md ├── LICENSE ├── LICENSE-docs.md ├── README.md ├── module_template ├── README.md ├── data │ └── empty.txt └── images │ └── empty.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/.gitignore -------------------------------------------------------------------------------- /01-introduction/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02-multidimensional_modelling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/02-multidimensional_modelling/README.md -------------------------------------------------------------------------------- /03-dimensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/03-dimensions/README.md -------------------------------------------------------------------------------- /03-dimensions/create_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/03-dimensions/create_structures.py -------------------------------------------------------------------------------- /03-dimensions/dimensions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/03-dimensions/dimensions.ipynb -------------------------------------------------------------------------------- /03-dimensions/load-01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/03-dimensions/load-01.py -------------------------------------------------------------------------------- /03-dimensions/load-02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/03-dimensions/load-02.py -------------------------------------------------------------------------------- /03-dimensions/load-03.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-star_schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/04-star_schema/README.md -------------------------------------------------------------------------------- /05-slowly_changing_dimensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/05-slowly_changing_dimensions/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/LICENSE-docs.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/README.md -------------------------------------------------------------------------------- /module_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataBrewery/learn-data-brewing/HEAD/module_template/README.md -------------------------------------------------------------------------------- /module_template/data/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module_template/images/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sqlalchemy 2 | tabulate 3 | --------------------------------------------------------------------------------