├── .gitignore ├── Makefile ├── README.md ├── all_indexes.sql ├── bin ├── build.py ├── exercises.py └── fetch.py ├── exercises.rst ├── model.py ├── notes.org ├── problem.txt ├── slides.txt └── ugly_and_not.py /.gitignore: -------------------------------------------------------------------------------- 1 | cache 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /all_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/all_indexes.sql -------------------------------------------------------------------------------- /bin/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/bin/build.py -------------------------------------------------------------------------------- /bin/exercises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/bin/exercises.py -------------------------------------------------------------------------------- /bin/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/bin/fetch.py -------------------------------------------------------------------------------- /exercises.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/exercises.rst -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/model.py -------------------------------------------------------------------------------- /notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/notes.org -------------------------------------------------------------------------------- /problem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/problem.txt -------------------------------------------------------------------------------- /slides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/slides.txt -------------------------------------------------------------------------------- /ugly_and_not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/pycon-sql-tutorial/HEAD/ugly_and_not.py --------------------------------------------------------------------------------