├── .gitignore ├── LICENSE ├── README.md ├── assets └── favicon.ico ├── credits.html ├── css ├── main.css ├── materialize.css └── materialize.min.css ├── font ├── material-design-icons │ ├── LICENSE.txt │ ├── Material-Design-Icons.eot │ ├── Material-Design-Icons.svg │ ├── Material-Design-Icons.ttf │ ├── Material-Design-Icons.woff │ └── Material-Design-Icons.woff2 └── roboto │ ├── Roboto-Bold.eot │ ├── Roboto-Bold.ttf │ ├── Roboto-Bold.woff │ ├── Roboto-Bold.woff2 │ ├── Roboto-Light.eot │ ├── Roboto-Light.ttf │ ├── Roboto-Light.woff │ ├── Roboto-Light.woff2 │ ├── Roboto-Medium.eot │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.woff │ ├── Roboto-Medium.woff2 │ ├── Roboto-Regular.eot │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.woff │ ├── Roboto-Regular.woff2 │ ├── Roboto-Thin.eot │ ├── Roboto-Thin.ttf │ ├── Roboto-Thin.woff │ └── Roboto-Thin.woff2 ├── fonts └── roboto │ ├── Roboto-Bold.eot │ ├── Roboto-Bold.ttf │ ├── Roboto-Bold.woff │ ├── Roboto-Bold.woff2 │ ├── Roboto-Light.eot │ ├── Roboto-Light.ttf │ ├── Roboto-Light.woff │ ├── Roboto-Light.woff2 │ ├── Roboto-Medium.eot │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.woff │ ├── Roboto-Medium.woff2 │ ├── Roboto-Regular.eot │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.woff │ ├── Roboto-Regular.woff2 │ ├── Roboto-Thin.eot │ ├── Roboto-Thin.ttf │ ├── Roboto-Thin.woff │ └── Roboto-Thin.woff2 ├── index.html ├── js ├── main.js ├── materialize.js └── materialize.min.js ├── lessons ├── __init__.py ├── lesson_0_hello_world │ ├── __init__.py │ └── index.html ├── lesson_1_greetings │ ├── __init__.py │ └── index.html ├── lesson_2_fizzbuzz │ ├── __init__.py │ └── index.html ├── lesson_3_calculator │ ├── __init__.py │ └── index.html ├── lesson_4_temperature │ ├── __init__.py │ └── index.html ├── lesson_5_pig_latin │ ├── __init__.py │ └── index.html ├── lesson_6_books │ ├── __init__.py │ └── index.html └── lesson_7_anagrams │ ├── __init__.py │ └── index.html ├── requirements.txt ├── tests ├── __init__.py ├── test_lesson_0_hello_world.py ├── test_lesson_1_greetings.py ├── test_lesson_2_fizzbuzz.py ├── test_lesson_3_calculator.py ├── test_lesson_4_temperature.py ├── test_lesson_5_pig_latin.py ├── test_lesson_6_books.py └── test_lesson_7_anagrams.py └── venv.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *.pyc 3 | .idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/README.md -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/credits.html -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/css/main.css -------------------------------------------------------------------------------- /css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/css/materialize.css -------------------------------------------------------------------------------- /css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/css/materialize.min.css -------------------------------------------------------------------------------- /font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/index.html -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/js/main.js -------------------------------------------------------------------------------- /js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/js/materialize.js -------------------------------------------------------------------------------- /js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/js/materialize.min.js -------------------------------------------------------------------------------- /lessons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_0_hello_world/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_0_hello_world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_0_hello_world/index.html -------------------------------------------------------------------------------- /lessons/lesson_1_greetings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_1_greetings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_1_greetings/index.html -------------------------------------------------------------------------------- /lessons/lesson_2_fizzbuzz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_2_fizzbuzz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_2_fizzbuzz/index.html -------------------------------------------------------------------------------- /lessons/lesson_3_calculator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_3_calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_3_calculator/index.html -------------------------------------------------------------------------------- /lessons/lesson_4_temperature/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_4_temperature/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_4_temperature/index.html -------------------------------------------------------------------------------- /lessons/lesson_5_pig_latin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_5_pig_latin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_5_pig_latin/index.html -------------------------------------------------------------------------------- /lessons/lesson_6_books/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_6_books/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_6_books/index.html -------------------------------------------------------------------------------- /lessons/lesson_7_anagrams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lessons/lesson_7_anagrams/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/lessons/lesson_7_anagrams/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ipython 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_lesson_0_hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/tests/test_lesson_0_hello_world.py -------------------------------------------------------------------------------- /tests/test_lesson_1_greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/tests/test_lesson_1_greetings.py -------------------------------------------------------------------------------- /tests/test_lesson_2_fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/tests/test_lesson_2_fizzbuzz.py -------------------------------------------------------------------------------- /tests/test_lesson_3_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/tests/test_lesson_3_calculator.py -------------------------------------------------------------------------------- /tests/test_lesson_4_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/tests/test_lesson_4_temperature.py -------------------------------------------------------------------------------- /tests/test_lesson_5_pig_latin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/tests/test_lesson_5_pig_latin.py -------------------------------------------------------------------------------- /tests/test_lesson_6_books.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_lesson_7_anagrams.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejessleigh/test_driven_python/HEAD/venv.html --------------------------------------------------------------------------------