├── .gitignore ├── CODE_OF_CONDUCT.md ├── README.md ├── algorithm-problems ├── Week1-Day2.pdf ├── Week1-Day4.pdf ├── Week1-Day5.pdf ├── Week1-Fundamentals-Day3.pdf ├── Week1_Day1-1.pdf ├── Week2-Arrays1-Day1.pdf ├── Week2-Arrays1-Day2.pdf ├── Week2-thurs.pdf ├── Week2_wed.pdf ├── Week4-Strings1-Day1.pdf ├── Week4-Strings1-Day2.pdf └── Week4-Strings1-Day4.pdf ├── prework ├── algorithms-basic13.js ├── algorithms-intermediate.js ├── assignment1.html ├── assignment2.html ├── assignment3.css ├── assignment3.html ├── assignment4 ├── assignment4.css ├── assignment4.html ├── erd-assignment1.mwb ├── erd-assignment1.mwb.bak ├── films.sql ├── python │ └── oop_test.py └── world.sql ├── week1 ├── html-review │ ├── hero.png │ ├── logo.png │ └── map.png ├── jquery-review │ ├── arena │ │ ├── beach.jpg │ │ ├── calvinandhobbes.jpg │ │ ├── dojo.jpg │ │ ├── forest.jpg │ │ ├── matrix.jpg │ │ └── snow.jpg │ ├── battle.html │ ├── battle.js │ ├── player │ │ ├── black.png │ │ ├── green.png │ │ ├── leo.jpg │ │ ├── red.png │ │ ├── white.png │ │ └── yellow.png │ └── style.css └── python-fundamentals │ ├── Week1-Day2.pdf │ ├── Week1-Day4.pdf │ ├── Week1-Day5.pdf │ ├── Week1-Fundamentals-Day3.pdf │ ├── Week1_Day1-1.pdf │ ├── __init__.py │ ├── animal.py │ ├── animal.pyc │ ├── arithmetic.py │ ├── avg-list.py │ ├── bubble-sort.py │ ├── bubble_sort.py │ ├── coin-toss.py │ ├── crawler.py │ ├── doubly-linked-list.py │ ├── functions.py │ ├── hello_world.py │ ├── insertion-sort.py │ ├── insertion_sort_answer.py │ ├── list.html │ ├── mathdojo.py │ ├── multiples.py │ ├── multiply.py │ ├── names.py │ ├── np.py │ ├── odd-even.py │ ├── oop-animal.py │ ├── oop-bike.py │ ├── oop-car.py │ ├── oop-dog.py │ ├── scores-grades.py │ ├── selection-sort.py │ ├── selection_sort.py │ ├── singly-linked-list.py │ ├── singly_linked_list.py │ ├── stars.py │ ├── sum-list.py │ └── underscore.py ├── week2 ├── counter-assignment.zip ├── counter-assignment │ ├── server.py │ └── templates │ │ └── index.html ├── disappearing-ninjas │ ├── server.py │ ├── static │ │ └── img │ │ │ ├── donatello.jpg │ │ │ ├── leonardo.jpg │ │ │ ├── michelangelo.jpg │ │ │ ├── notapril.jpg │ │ │ └── raphael.jpg │ └── templates │ │ ├── index.html │ │ └── ninja.html ├── dojo-survey-validation │ ├── server.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ ├── index.html │ │ └── results.html ├── dojo-survey.zip ├── dojo-survey │ ├── server.py │ └── templates │ │ ├── index.html │ │ └── results.html ├── email-validation │ ├── mysqlconnection.py │ ├── mysqlconnection.pyc │ ├── server.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ ├── index.html │ │ └── results.html ├── flask-assignment.zip ├── flask-assignment │ ├── server.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ ├── dojo.html │ │ ├── index.html │ │ ├── ninja.html │ │ └── success.html ├── flask-mysql │ ├── mysqlconnection.py │ ├── mysqlconnection.pyc │ ├── server.py │ └── users.sql ├── form_test │ ├── server.py │ └── templates │ │ ├── index.html │ │ └── user.html ├── friends │ ├── mysqlconnection.py │ ├── mysqlconnection.pyc │ ├── server.py │ └── templates │ │ └── index.html ├── full-friends │ ├── mysqlconnection.py │ ├── mysqlconnection.pyc │ ├── server.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ ├── edit.html │ │ └── index.html ├── great-number-game │ ├── server.py │ ├── static │ │ ├── css │ │ │ └── style.css │ │ └── style.css │ └── templates │ │ ├── guess.html │ │ └── index.html ├── hello-flask │ ├── hello.py │ └── templates │ │ └── index.html ├── index.html ├── login-registration │ ├── mysqlconnection.py │ ├── mysqlconnection.pyc │ ├── server.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ ├── dashboard.html │ │ ├── index.html │ │ ├── login.html │ │ └── partial.html ├── ninja-gold │ ├── server.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ └── index.html ├── pylot-mvc │ ├── README.md │ ├── __init__.py │ ├── app │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── base.py │ │ │ ├── base.pyc │ │ │ ├── database.py │ │ │ ├── database.pyc │ │ │ ├── routes.py │ │ │ └── routes.pyc │ │ ├── controllers │ │ │ ├── Times.py │ │ │ ├── Times.pyc │ │ │ ├── Welcome.py │ │ │ ├── Welcome.pyc │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── models │ │ │ ├── WelcomeModel.py │ │ │ └── __init__.py │ │ ├── static │ │ │ └── css │ │ │ │ └── styles.css │ │ └── views │ │ │ ├── index.html │ │ │ └── time.html │ ├── manage.py │ ├── setup │ ├── system │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── controller.py │ │ │ ├── controller.pyc │ │ │ ├── model.py │ │ │ ├── router.py │ │ │ └── router.pyc │ │ ├── db │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── db_init.py │ │ │ ├── db_init.pyc │ │ │ └── drivers │ │ │ │ ├── __init__.py │ │ │ │ └── _mysql.py │ │ ├── dependencies.txt │ │ └── init │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── configuration.py │ │ │ ├── configuration.pyc │ │ │ ├── database.py │ │ │ ├── database.pyc │ │ │ ├── routes.py │ │ │ └── routes.pyc │ └── venv │ │ ├── .Python │ │ ├── bin │ │ ├── activate │ │ ├── activate.csh │ │ ├── activate.fish │ │ ├── activate_this.py │ │ ├── easy_install │ │ ├── easy_install-2.7 │ │ ├── pip │ │ ├── pip2 │ │ ├── pip2.7 │ │ ├── python │ │ ├── python2 │ │ ├── python2.7 │ │ └── wheel │ │ ├── include │ │ └── python2.7 │ │ └── lib │ │ └── python2.7 │ │ ├── UserDict.py │ │ ├── UserDict.pyc │ │ ├── _abcoll.py │ │ ├── _abcoll.pyc │ │ ├── _weakrefset.py │ │ ├── _weakrefset.pyc │ │ ├── abc.py │ │ ├── abc.pyc │ │ ├── codecs.py │ │ ├── codecs.pyc │ │ ├── config │ │ ├── copy_reg.py │ │ ├── copy_reg.pyc │ │ ├── distutils │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── distutils.cfg │ │ ├── encodings │ │ ├── fnmatch.py │ │ ├── fnmatch.pyc │ │ ├── genericpath.py │ │ ├── genericpath.pyc │ │ ├── lib-dynload │ │ ├── linecache.py │ │ ├── linecache.pyc │ │ ├── locale.py │ │ ├── locale.pyc │ │ ├── no-global-site-packages.txt │ │ ├── ntpath.py │ │ ├── orig-prefix.txt │ │ ├── os.py │ │ ├── os.pyc │ │ ├── posixpath.py │ │ ├── posixpath.pyc │ │ ├── re.py │ │ ├── re.pyc │ │ ├── site-packages │ │ ├── _markerlib │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── markers.py │ │ │ └── markers.pyc │ │ ├── easy_install.py │ │ ├── easy_install.pyc │ │ ├── pip-7.1.2.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ ├── pbr.json │ │ │ └── top_level.txt │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __main__.py │ │ │ ├── __main__.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _markerlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── markers.py │ │ │ │ │ └── markers.pyc │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── adapter.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── cache.pyc │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ ├── file_cache.pyc │ │ │ │ │ │ ├── redis_cache.py │ │ │ │ │ │ └── redis_cache.pyc │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compat.pyc │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── controller.pyc │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── filewrapper.pyc │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── heuristics.pyc │ │ │ │ │ ├── serialize.py │ │ │ │ │ ├── serialize.pyc │ │ │ │ │ ├── wrapper.py │ │ │ │ │ └── wrapper.pyc │ │ │ │ ├── colorama │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansi.pyc │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── ansitowin32.pyc │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── initialise.pyc │ │ │ │ │ ├── win32.py │ │ │ │ │ ├── win32.pyc │ │ │ │ │ ├── winterm.py │ │ │ │ │ └── winterm.pyc │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── _backport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── misc.pyc │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ ├── shutil.pyc │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ ├── sysconfig.pyc │ │ │ │ │ │ ├── tarfile.py │ │ │ │ │ │ └── tarfile.pyc │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compat.pyc │ │ │ │ │ ├── database.py │ │ │ │ │ ├── database.pyc │ │ │ │ │ ├── index.py │ │ │ │ │ ├── index.pyc │ │ │ │ │ ├── locators.py │ │ │ │ │ ├── locators.pyc │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── manifest.pyc │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── markers.pyc │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata.pyc │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── resources.pyc │ │ │ │ │ ├── scripts.py │ │ │ │ │ ├── scripts.pyc │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── util.py │ │ │ │ │ ├── util.pyc │ │ │ │ │ ├── version.py │ │ │ │ │ ├── version.pyc │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel.pyc │ │ │ │ ├── html5lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── constants.pyc │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── _base.pyc │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ ├── alphabeticalattributes.pyc │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ ├── inject_meta_charset.pyc │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ ├── lint.pyc │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ ├── optionaltags.pyc │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ ├── sanitizer.pyc │ │ │ │ │ │ ├── whitespace.py │ │ │ │ │ │ └── whitespace.pyc │ │ │ │ │ ├── html5parser.py │ │ │ │ │ ├── html5parser.pyc │ │ │ │ │ ├── ihatexml.py │ │ │ │ │ ├── ihatexml.pyc │ │ │ │ │ ├── inputstream.py │ │ │ │ │ ├── inputstream.pyc │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ ├── sanitizer.pyc │ │ │ │ │ ├── serializer │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── htmlserializer.py │ │ │ │ │ │ └── htmlserializer.pyc │ │ │ │ │ ├── tokenizer.py │ │ │ │ │ ├── tokenizer.pyc │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── sax.py │ │ │ │ │ │ └── sax.pyc │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── _base.pyc │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── dom.pyc │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── etree.pyc │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ └── etree_lxml.pyc │ │ │ │ │ ├── treewalkers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── _base.pyc │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── dom.pyc │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── etree.pyc │ │ │ │ │ │ ├── genshistream.py │ │ │ │ │ │ ├── genshistream.pyc │ │ │ │ │ │ ├── lxmletree.py │ │ │ │ │ │ ├── lxmletree.pyc │ │ │ │ │ │ ├── pulldom.py │ │ │ │ │ │ └── pulldom.pyc │ │ │ │ │ ├── trie │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── _base.pyc │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ ├── datrie.pyc │ │ │ │ │ │ ├── py.py │ │ │ │ │ │ └── py.pyc │ │ │ │ │ ├── utils.py │ │ │ │ │ └── utils.pyc │ │ │ │ ├── ipaddress.py │ │ │ │ ├── ipaddress.pyc │ │ │ │ ├── lockfile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── linklockfile.py │ │ │ │ │ ├── linklockfile.pyc │ │ │ │ │ ├── mkdirlockfile.py │ │ │ │ │ ├── mkdirlockfile.pyc │ │ │ │ │ ├── pidlockfile.py │ │ │ │ │ ├── pidlockfile.pyc │ │ │ │ │ ├── sqlitelockfile.py │ │ │ │ │ ├── sqlitelockfile.pyc │ │ │ │ │ ├── symlinklockfile.py │ │ │ │ │ └── symlinklockfile.pyc │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __about__.pyc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _compat.pyc │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── _structures.pyc │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── specifiers.pyc │ │ │ │ │ ├── version.py │ │ │ │ │ └── version.pyc │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __init__.pyc │ │ │ │ ├── progress │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── bar.pyc │ │ │ │ │ ├── counter.py │ │ │ │ │ ├── counter.pyc │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── helpers.pyc │ │ │ │ │ ├── spinner.py │ │ │ │ │ └── spinner.pyc │ │ │ │ ├── re-vendor.py │ │ │ │ ├── re-vendor.pyc │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── adapters.pyc │ │ │ │ │ ├── api.py │ │ │ │ │ ├── api.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── auth.pyc │ │ │ │ │ ├── cacert.pem │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── certs.pyc │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compat.pyc │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── cookies.pyc │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── exceptions.pyc │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── hooks.pyc │ │ │ │ │ ├── models.py │ │ │ │ │ ├── models.pyc │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ ├── big5freq.pyc │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ ├── big5prober.pyc │ │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ │ ├── chardetect.pyc │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ ├── chardistribution.pyc │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ ├── charsetgroupprober.pyc │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ ├── charsetprober.pyc │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ ├── codingstatemachine.pyc │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── compat.pyc │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ ├── constants.pyc │ │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ │ ├── cp949prober.pyc │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ ├── escprober.pyc │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ ├── escsm.pyc │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ ├── eucjpprober.pyc │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ ├── euckrfreq.pyc │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ ├── euckrprober.pyc │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ ├── euctwfreq.pyc │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ ├── euctwprober.pyc │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ ├── gb2312freq.pyc │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ ├── gb2312prober.pyc │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ ├── hebrewprober.pyc │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ ├── jisfreq.pyc │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ ├── jpcntx.pyc │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ ├── langbulgarianmodel.pyc │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ ├── langcyrillicmodel.pyc │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ ├── langgreekmodel.pyc │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ ├── langhebrewmodel.pyc │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ ├── langhungarianmodel.pyc │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ ├── langthaimodel.pyc │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ ├── latin1prober.pyc │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ ├── mbcharsetprober.pyc │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ ├── mbcsgroupprober.pyc │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ ├── mbcssm.pyc │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ ├── sbcharsetprober.pyc │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ ├── sbcsgroupprober.pyc │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ ├── sjisprober.pyc │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ ├── universaldetector.pyc │ │ │ │ │ │ │ ├── utf8prober.py │ │ │ │ │ │ │ └── utf8prober.pyc │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ ├── _collections.pyc │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── connection.pyc │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ ├── connectionpool.pyc │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ ├── ntlmpool.pyc │ │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ │ └── pyopenssl.pyc │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── exceptions.pyc │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── fields.pyc │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ ├── filepost.pyc │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ │ ├── ordered_dict.pyc │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ ├── six.pyc │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ │ │ ├── _implementation.py │ │ │ │ │ │ │ │ └── _implementation.pyc │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ ├── poolmanager.pyc │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── request.pyc │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ ├── response.pyc │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── connection.pyc │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── request.pyc │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ ├── response.pyc │ │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ │ ├── retry.pyc │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ ├── ssl_.pyc │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ ├── timeout.pyc │ │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ │ └── url.pyc │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── sessions.pyc │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── status_codes.pyc │ │ │ │ │ ├── structures.py │ │ │ │ │ ├── structures.pyc │ │ │ │ │ ├── utils.py │ │ │ │ │ └── utils.pyc │ │ │ │ ├── retrying.py │ │ │ │ ├── retrying.pyc │ │ │ │ ├── six.py │ │ │ │ └── six.pyc │ │ │ ├── basecommand.py │ │ │ ├── basecommand.pyc │ │ │ ├── baseparser.py │ │ │ ├── baseparser.pyc │ │ │ ├── cmdoptions.py │ │ │ ├── cmdoptions.pyc │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── completion.py │ │ │ │ ├── completion.pyc │ │ │ │ ├── freeze.py │ │ │ │ ├── freeze.pyc │ │ │ │ ├── help.py │ │ │ │ ├── help.pyc │ │ │ │ ├── install.py │ │ │ │ ├── install.pyc │ │ │ │ ├── list.py │ │ │ │ ├── list.pyc │ │ │ │ ├── search.py │ │ │ │ ├── search.pyc │ │ │ │ ├── show.py │ │ │ │ ├── show.pyc │ │ │ │ ├── uninstall.py │ │ │ │ ├── uninstall.pyc │ │ │ │ ├── wheel.py │ │ │ │ └── wheel.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── dictconfig.py │ │ │ │ └── dictconfig.pyc │ │ │ ├── download.py │ │ │ ├── download.pyc │ │ │ ├── exceptions.py │ │ │ ├── exceptions.pyc │ │ │ ├── index.py │ │ │ ├── index.pyc │ │ │ ├── locations.py │ │ │ ├── locations.pyc │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── index.py │ │ │ │ └── index.pyc │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── freeze.py │ │ │ │ └── freeze.pyc │ │ │ ├── pep425tags.py │ │ │ ├── pep425tags.pyc │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── req_file.py │ │ │ │ ├── req_file.pyc │ │ │ │ ├── req_install.py │ │ │ │ ├── req_install.pyc │ │ │ │ ├── req_set.py │ │ │ │ ├── req_set.pyc │ │ │ │ ├── req_uninstall.py │ │ │ │ └── req_uninstall.pyc │ │ │ ├── status_codes.py │ │ │ ├── status_codes.pyc │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── appdirs.pyc │ │ │ │ ├── build.py │ │ │ │ ├── build.pyc │ │ │ │ ├── deprecation.py │ │ │ │ ├── deprecation.pyc │ │ │ │ ├── filesystem.py │ │ │ │ ├── filesystem.pyc │ │ │ │ ├── logging.py │ │ │ │ ├── logging.pyc │ │ │ │ ├── outdated.py │ │ │ │ ├── outdated.pyc │ │ │ │ ├── ui.py │ │ │ │ └── ui.pyc │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── bazaar.pyc │ │ │ │ ├── git.py │ │ │ │ ├── git.pyc │ │ │ │ ├── mercurial.py │ │ │ │ ├── mercurial.pyc │ │ │ │ ├── subversion.py │ │ │ │ └── subversion.pyc │ │ │ ├── wheel.py │ │ │ └── wheel.pyc │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ └── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __about__.pyc │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _compat.pyc │ │ │ │ ├── _structures.py │ │ │ │ ├── _structures.pyc │ │ │ │ ├── specifiers.py │ │ │ │ ├── specifiers.pyc │ │ │ │ ├── version.py │ │ │ │ └── version.pyc │ │ ├── setuptools-18.2.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── setuptools │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── archive_util.py │ │ │ ├── archive_util.pyc │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli-arm-32.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── alias.py │ │ │ │ ├── alias.pyc │ │ │ │ ├── bdist_egg.py │ │ │ │ ├── bdist_egg.pyc │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_rpm.pyc │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── bdist_wininst.pyc │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_ext.pyc │ │ │ │ ├── build_py.py │ │ │ │ ├── build_py.pyc │ │ │ │ ├── develop.py │ │ │ │ ├── develop.pyc │ │ │ │ ├── easy_install.py │ │ │ │ ├── easy_install.pyc │ │ │ │ ├── egg_info.py │ │ │ │ ├── egg_info.pyc │ │ │ │ ├── install.py │ │ │ │ ├── install.pyc │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_egg_info.pyc │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_lib.pyc │ │ │ │ ├── install_scripts.py │ │ │ │ ├── install_scripts.pyc │ │ │ │ ├── launcher manifest.xml │ │ │ │ ├── register.py │ │ │ │ ├── register.pyc │ │ │ │ ├── rotate.py │ │ │ │ ├── rotate.pyc │ │ │ │ ├── saveopts.py │ │ │ │ ├── saveopts.pyc │ │ │ │ ├── sdist.py │ │ │ │ ├── sdist.pyc │ │ │ │ ├── setopt.py │ │ │ │ ├── setopt.pyc │ │ │ │ ├── test.py │ │ │ │ ├── test.pyc │ │ │ │ ├── upload_docs.py │ │ │ │ └── upload_docs.pyc │ │ │ ├── compat.py │ │ │ ├── compat.pyc │ │ │ ├── depends.py │ │ │ ├── depends.pyc │ │ │ ├── dist.py │ │ │ ├── dist.pyc │ │ │ ├── extension.py │ │ │ ├── extension.pyc │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui-arm-32.exe │ │ │ ├── gui.exe │ │ │ ├── lib2to3_ex.py │ │ │ ├── lib2to3_ex.pyc │ │ │ ├── msvc9_support.py │ │ │ ├── msvc9_support.pyc │ │ │ ├── package_index.py │ │ │ ├── package_index.pyc │ │ │ ├── py26compat.py │ │ │ ├── py26compat.pyc │ │ │ ├── py27compat.py │ │ │ ├── py27compat.pyc │ │ │ ├── py31compat.py │ │ │ ├── py31compat.pyc │ │ │ ├── sandbox.py │ │ │ ├── sandbox.pyc │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── site-patch.py │ │ │ ├── site-patch.pyc │ │ │ ├── ssl_support.py │ │ │ ├── ssl_support.pyc │ │ │ ├── unicode_utils.py │ │ │ ├── unicode_utils.pyc │ │ │ ├── utils.py │ │ │ ├── utils.pyc │ │ │ ├── version.py │ │ │ ├── version.pyc │ │ │ ├── windows_support.py │ │ │ └── windows_support.pyc │ │ ├── wheel-0.24.0.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── RECORD.jws │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ └── wheel │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __main__.py │ │ │ ├── __main__.pyc │ │ │ ├── archive.py │ │ │ ├── archive.pyc │ │ │ ├── bdist_wheel.py │ │ │ ├── bdist_wheel.pyc │ │ │ ├── decorator.py │ │ │ ├── decorator.pyc │ │ │ ├── egg2wheel.py │ │ │ ├── egg2wheel.pyc │ │ │ ├── eggnames.txt │ │ │ ├── install.py │ │ │ ├── install.pyc │ │ │ ├── metadata.py │ │ │ ├── metadata.pyc │ │ │ ├── paths.py │ │ │ ├── paths.pyc │ │ │ ├── pep425tags.py │ │ │ ├── pep425tags.pyc │ │ │ ├── pkginfo.py │ │ │ ├── pkginfo.pyc │ │ │ ├── signatures │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── djbec.py │ │ │ ├── djbec.pyc │ │ │ ├── ed25519py.py │ │ │ ├── ed25519py.pyc │ │ │ ├── keys.py │ │ │ └── keys.pyc │ │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── complex-dist │ │ │ │ ├── complexdist │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __init__.pyc │ │ │ │ ├── setup.py │ │ │ │ └── setup.pyc │ │ │ ├── headers.dist │ │ │ │ ├── header.h │ │ │ │ ├── headersdist.py │ │ │ │ ├── headersdist.pyc │ │ │ │ ├── setup.py │ │ │ │ └── setup.pyc │ │ │ ├── pydist-schema.json │ │ │ ├── simple.dist │ │ │ │ ├── setup.py │ │ │ │ ├── setup.pyc │ │ │ │ └── simpledist │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __init__.pyc │ │ │ ├── test-1.0-py2.py3-none-win32.whl │ │ │ ├── test_basic.py │ │ │ ├── test_basic.pyc │ │ │ ├── test_install.py │ │ │ ├── test_install.pyc │ │ │ ├── test_keys.py │ │ │ ├── test_keys.pyc │ │ │ ├── test_paths.py │ │ │ ├── test_paths.pyc │ │ │ ├── test_ranking.py │ │ │ ├── test_ranking.pyc │ │ │ ├── test_signatures.py │ │ │ ├── test_signatures.pyc │ │ │ ├── test_tagopt.py │ │ │ ├── test_tagopt.pyc │ │ │ ├── test_tool.py │ │ │ ├── test_tool.pyc │ │ │ ├── test_wheelfile.py │ │ │ └── test_wheelfile.pyc │ │ │ ├── tool │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── util.py │ │ │ ├── util.pyc │ │ │ ├── wininst2wheel.py │ │ │ └── wininst2wheel.pyc │ │ ├── site.py │ │ ├── site.pyc │ │ ├── sre.py │ │ ├── sre_compile.py │ │ ├── sre_compile.pyc │ │ ├── sre_constants.py │ │ ├── sre_constants.pyc │ │ ├── sre_parse.py │ │ ├── sre_parse.pyc │ │ ├── stat.py │ │ ├── stat.pyc │ │ ├── types.py │ │ ├── types.pyc │ │ ├── warnings.py │ │ └── warnings.pyc ├── registration-form │ ├── server.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ ├── index.html │ │ ├── partial.html │ │ └── results.html ├── server.py ├── test_templates │ ├── server.py │ ├── static │ │ ├── css │ │ │ └── style.css │ │ ├── img │ │ │ └── stevephone.jpg │ │ ├── js │ │ │ └── script.js │ │ ├── script.js │ │ └── style.css │ └── templates │ │ ├── index.html │ │ └── success.html └── the-wall │ ├── Untitled.mwb │ ├── loginregistration_comments.sql │ ├── loginregistration_posts.sql │ ├── loginregistration_users.sql │ ├── mysqlconnection.py │ ├── mysqlconnection.pyc │ ├── server.py │ ├── static │ └── css │ │ └── style.css │ ├── templates │ ├── dashboard.html │ ├── footer.html │ ├── head.html │ ├── index.html │ ├── login.html │ ├── nav.html │ └── partial.html │ ├── wall.mwb │ └── wall.mwb.bak ├── week3 ├── pokemon │ ├── pokedeck.html │ └── pokemon.html └── weather │ └── weather.html ├── week4 └── django-essentials │ ├── disappearing_ninja │ ├── apps │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── home │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── templates │ │ │ │ └── home │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ │ └── ninja │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── static │ │ │ └── ninja │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ └── img │ │ │ │ ├── donatello.jpg │ │ │ │ ├── leonardo.jpg │ │ │ │ ├── michelangelo.jpg │ │ │ │ ├── notapril.jpg │ │ │ │ └── raphael.jpg │ │ │ ├── templates │ │ │ └── ninja │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ ├── db.sqlite3 │ ├── disappearing_ninja │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ └── manage.py │ ├── first_project │ ├── apps │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── home │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── static │ │ │ │ └── home │ │ │ │ │ └── style.css │ │ │ ├── templates │ │ │ │ └── home │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ │ └── quiz │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0001_initial.pyc │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── static │ │ │ └── quiz │ │ │ │ └── style.css │ │ │ ├── templates │ │ │ └── quiz │ │ │ │ ├── index.html │ │ │ │ └── show.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ ├── db.sqlite3 │ ├── first_project │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ └── manage.py │ ├── model_practice │ ├── apps │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── home │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── templates │ │ │ │ └── home │ │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ │ └── interests │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0001_initial.pyc │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── templates │ │ │ └── interests │ │ │ │ ├── index.html │ │ │ │ └── user.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ ├── db.sqlite3 │ ├── manage.py │ ├── model_practice │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ └── querysets.txt │ ├── ninja_gold │ ├── apps │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── home │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.pyc │ │ │ ├── forms.py │ │ │ ├── forms.pyc │ │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── static │ │ │ └── home │ │ │ │ └── css │ │ │ │ └── style.css │ │ │ ├── templates │ │ │ └── home │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── views.pyc │ ├── db.sqlite3 │ ├── manage.py │ └── ninja_gold │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ ├── product_catalogue │ ├── apps │ │ ├── __init__.pyc │ │ └── products │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── forms.py │ │ │ ├── forms.pyc │ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0001_initial.pyc │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── static │ │ │ └── products │ │ │ │ └── css │ │ │ │ └── style.css │ │ │ ├── templates │ │ │ └── products │ │ │ │ ├── edit.html │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ ├── db.sqlite3 │ ├── manage.py │ └── product_catalogue │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ ├── random_string │ ├── apps │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── home │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── templates │ │ │ └── home │ │ │ │ └── index.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── views.pyc │ ├── db.sqlite3 │ ├── manage.py │ └── random_string │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ ├── review │ ├── apps │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── game_page │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── login_reg │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── tests.py │ │ │ └── views.py │ │ └── message_board │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── tests.py │ │ │ └── views.py │ ├── db.sqlite3 │ ├── manage.py │ └── review │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── wsgi.py │ │ └── wsgi.pyc │ ├── survey_form │ ├── apps │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ └── surveys │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── admin.py │ │ │ ├── admin.pyc │ │ │ ├── migrations │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ │ ├── models.py │ │ │ ├── models.pyc │ │ │ ├── templates │ │ │ └── surveys │ │ │ │ ├── index.html │ │ │ │ └── result.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ ├── urls.pyc │ │ │ ├── views.py │ │ │ └── views.pyc │ ├── db.sqlite3 │ ├── manage.py │ └── survey_form │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── settings.py │ │ ├── settings.pyc │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── wsgi.py │ │ └── wsgi.pyc │ └── time_display │ ├── apps │ ├── __init__.py │ ├── __init__.pyc │ └── times │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── admin.py │ │ ├── admin.pyc │ │ ├── migrations │ │ ├── __init__.py │ │ └── __init__.pyc │ │ ├── models.py │ │ ├── models.pyc │ │ ├── static │ │ └── times │ │ │ └── css │ │ │ └── style.css │ │ ├── templates │ │ └── times │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ ├── urls.pyc │ │ ├── views.py │ │ └── views.pyc │ ├── db.sqlite3 │ ├── manage.py │ └── time_display │ ├── __init__.py │ ├── __init__.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc └── week5 ├── advanced_model_techniques ├── advanced_model_techniques │ ├── __init__.py │ ├── __init__.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc ├── apps │ ├── __init__.py │ ├── __init__.pyc │ ├── store │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── admin.py │ │ ├── admin.pyc │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0001_initial.pyc │ │ │ ├── __init__.py │ │ │ └── __init__.pyc │ │ ├── models.py │ │ ├── models.pyc │ │ ├── templates │ │ │ └── store │ │ │ │ └── index.html │ │ ├── tests.py │ │ └── views.py │ └── urls.py ├── db.sqlite3 └── manage.py ├── class_based_views ├── apps │ ├── __init__.py │ ├── __init__.pyc │ └── sums │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── admin.py │ │ ├── admin.pyc │ │ ├── migrations │ │ ├── __init__.py │ │ └── __init__.pyc │ │ ├── models.py │ │ ├── models.pyc │ │ ├── templates │ │ └── sums │ │ │ └── index.html │ │ ├── tests.py │ │ ├── views.py │ │ └── views.pyc ├── class_based_views │ ├── __init__.py │ ├── __init__.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc ├── db.sqlite3 └── manage.py ├── exercise_1 ├── apps │ ├── __init__.py │ ├── __init__.pyc │ └── message │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── admin.py │ │ ├── admin.pyc │ │ ├── migrations │ │ ├── __init__.py │ │ └── __init__.pyc │ │ ├── models.py │ │ ├── models.pyc │ │ ├── templates │ │ └── message │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ ├── views.py │ │ └── views.pyc ├── db.sqlite3 ├── exercise_1 │ ├── __init__.py │ ├── __init__.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc └── manage.py └── generic_views ├── apps ├── __init__.py ├── __init__.pyc └── school │ ├── __init__.py │ ├── __init__.pyc │ ├── admin.py │ ├── admin.pyc │ ├── migrations │ ├── 0001_initial.py │ ├── 0001_initial.pyc │ ├── 0002_auto_20151130_2104.py │ ├── 0002_auto_20151130_2104.pyc │ ├── __init__.py │ └── __init__.pyc │ ├── models.py │ ├── models.pyc │ ├── templates │ └── school │ │ ├── index.html │ │ └── show.html │ ├── tests.py │ ├── views.py │ └── views.pyc ├── db.sqlite3 ├── generic_views ├── __init__.py ├── __init__.pyc ├── settings.py ├── settings.pyc ├── urls.py ├── urls.pyc ├── wsgi.py └── wsgi.pyc └── manage.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # coding-dojo 2 | coursework for coding dojo 3 | -------------------------------------------------------------------------------- /algorithm-problems/Week1-Day2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week1-Day2.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week1-Day4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week1-Day4.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week1-Day5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week1-Day5.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week1-Fundamentals-Day3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week1-Fundamentals-Day3.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week1_Day1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week1_Day1-1.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week2-Arrays1-Day1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week2-Arrays1-Day1.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week2-Arrays1-Day2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week2-Arrays1-Day2.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week2-thurs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week2-thurs.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week2_wed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week2_wed.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week4-Strings1-Day1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week4-Strings1-Day1.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week4-Strings1-Day2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week4-Strings1-Day2.pdf -------------------------------------------------------------------------------- /algorithm-problems/Week4-Strings1-Day4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/algorithm-problems/Week4-Strings1-Day4.pdf -------------------------------------------------------------------------------- /prework/assignment1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Basic I 5 | 6 | 7 |

What language do you love?

8 |

I love HTML!

9 | 10 | -------------------------------------------------------------------------------- /prework/erd-assignment1.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/prework/erd-assignment1.mwb -------------------------------------------------------------------------------- /prework/erd-assignment1.mwb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/prework/erd-assignment1.mwb.bak -------------------------------------------------------------------------------- /week1/html-review/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/html-review/hero.png -------------------------------------------------------------------------------- /week1/html-review/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/html-review/logo.png -------------------------------------------------------------------------------- /week1/html-review/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/html-review/map.png -------------------------------------------------------------------------------- /week1/jquery-review/arena/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/arena/beach.jpg -------------------------------------------------------------------------------- /week1/jquery-review/arena/calvinandhobbes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/arena/calvinandhobbes.jpg -------------------------------------------------------------------------------- /week1/jquery-review/arena/dojo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/arena/dojo.jpg -------------------------------------------------------------------------------- /week1/jquery-review/arena/forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/arena/forest.jpg -------------------------------------------------------------------------------- /week1/jquery-review/arena/matrix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/arena/matrix.jpg -------------------------------------------------------------------------------- /week1/jquery-review/arena/snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/arena/snow.jpg -------------------------------------------------------------------------------- /week1/jquery-review/player/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/player/black.png -------------------------------------------------------------------------------- /week1/jquery-review/player/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/player/green.png -------------------------------------------------------------------------------- /week1/jquery-review/player/leo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/player/leo.jpg -------------------------------------------------------------------------------- /week1/jquery-review/player/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/player/red.png -------------------------------------------------------------------------------- /week1/jquery-review/player/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/player/white.png -------------------------------------------------------------------------------- /week1/jquery-review/player/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/jquery-review/player/yellow.png -------------------------------------------------------------------------------- /week1/python-fundamentals/Week1-Day2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/python-fundamentals/Week1-Day2.pdf -------------------------------------------------------------------------------- /week1/python-fundamentals/Week1-Day4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/python-fundamentals/Week1-Day4.pdf -------------------------------------------------------------------------------- /week1/python-fundamentals/Week1-Day5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/python-fundamentals/Week1-Day5.pdf -------------------------------------------------------------------------------- /week1/python-fundamentals/Week1-Fundamentals-Day3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/python-fundamentals/Week1-Fundamentals-Day3.pdf -------------------------------------------------------------------------------- /week1/python-fundamentals/Week1_Day1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/python-fundamentals/Week1_Day1-1.pdf -------------------------------------------------------------------------------- /week1/python-fundamentals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/python-fundamentals/__init__.py -------------------------------------------------------------------------------- /week1/python-fundamentals/animal.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week1/python-fundamentals/animal.pyc -------------------------------------------------------------------------------- /week1/python-fundamentals/arithmetic.py: -------------------------------------------------------------------------------- 1 | #file name: arithmetic.py 2 | def add(x, y): 3 | return x + y 4 | 5 | def multiply(x, y): 6 | return x * y 7 | 8 | def subtract(x, y): 9 | return x - y -------------------------------------------------------------------------------- /week1/python-fundamentals/avg-list.py: -------------------------------------------------------------------------------- 1 | #Create a program that prints the average of the values in the list a = [1, 2, 5, 10, 255, 3]. 2 | a = [1, 2, 5, 10, 255, 3] 3 | print sum(a)/len(a) -------------------------------------------------------------------------------- /week1/python-fundamentals/functions.py: -------------------------------------------------------------------------------- 1 | def add(a,b): 2 | x = a + b 3 | return x 4 | 5 | result = add(3,5) 6 | print result -------------------------------------------------------------------------------- /week1/python-fundamentals/hello_world.py: -------------------------------------------------------------------------------- 1 | for item in range(0,1001): 2 | if item % 2 != 0: 3 | print item 4 | -------------------------------------------------------------------------------- /week1/python-fundamentals/sum-list.py: -------------------------------------------------------------------------------- 1 | #Create a program that prints the sum of all the values in the list a = [1, 2, 5, 10, 255, 3]. 2 | a = [1, 2, 5, 10, 255, 3] 3 | print sum(a) -------------------------------------------------------------------------------- /week2/counter-assignment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/counter-assignment.zip -------------------------------------------------------------------------------- /week2/disappearing-ninjas/static/img/donatello.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/disappearing-ninjas/static/img/donatello.jpg -------------------------------------------------------------------------------- /week2/disappearing-ninjas/static/img/leonardo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/disappearing-ninjas/static/img/leonardo.jpg -------------------------------------------------------------------------------- /week2/disappearing-ninjas/static/img/michelangelo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/disappearing-ninjas/static/img/michelangelo.jpg -------------------------------------------------------------------------------- /week2/disappearing-ninjas/static/img/notapril.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/disappearing-ninjas/static/img/notapril.jpg -------------------------------------------------------------------------------- /week2/disappearing-ninjas/static/img/raphael.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/disappearing-ninjas/static/img/raphael.jpg -------------------------------------------------------------------------------- /week2/disappearing-ninjas/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Disappearing Ninjas 5 | 6 | 7 |

No ninjas here

8 | 9 | 10 | -------------------------------------------------------------------------------- /week2/dojo-survey.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/dojo-survey.zip -------------------------------------------------------------------------------- /week2/email-validation/mysqlconnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/email-validation/mysqlconnection.pyc -------------------------------------------------------------------------------- /week2/flask-assignment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/flask-assignment.zip -------------------------------------------------------------------------------- /week2/flask-assignment/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /week2/flask-assignment/templates/success.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Success 5 | 6 | 7 |

Success

8 | 9 | 10 | -------------------------------------------------------------------------------- /week2/flask-mysql/mysqlconnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/flask-mysql/mysqlconnection.pyc -------------------------------------------------------------------------------- /week2/flask-mysql/users.sql: -------------------------------------------------------------------------------- 1 | mydbSELECT * FROM new_schema.mydb; -------------------------------------------------------------------------------- /week2/friends/mysqlconnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/friends/mysqlconnection.pyc -------------------------------------------------------------------------------- /week2/full-friends/mysqlconnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/full-friends/mysqlconnection.pyc -------------------------------------------------------------------------------- /week2/hello-flask/hello.py: -------------------------------------------------------------------------------- 1 | from flask import Flask, render_template 2 | app = Flask(__name__) 3 | 4 | @app.route('/') 5 | 6 | def hello_world(): 7 | return render_template('index.html', name='Danielle') 8 | 9 | app.run(debug=True) 10 | -------------------------------------------------------------------------------- /week2/hello-flask/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello Flask 5 | 6 | 7 |

Hello Flask!

8 |

My nane is {{name}}

9 | 10 | 11 | -------------------------------------------------------------------------------- /week2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/index.html -------------------------------------------------------------------------------- /week2/login-registration/mysqlconnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/login-registration/mysqlconnection.pyc -------------------------------------------------------------------------------- /week2/login-registration/templates/partial.html: -------------------------------------------------------------------------------- 1 | {% if errors %} 2 |
3 | {%- for msg in errors %} 4 |

{{ msg }}

5 | {% endfor -%} 6 |
7 | {% endif %} 8 | -------------------------------------------------------------------------------- /week2/pylot-mvc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/app/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/config/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/app/config/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/config/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/config/base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/config/base.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/config/database.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/config/database.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/config/routes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/config/routes.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/controllers/Times.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/controllers/Times.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/controllers/Welcome.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/controllers/Welcome.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/controllers/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/controllers/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/app/models/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/setup: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | virtualenv venv 3 | source venv/bin/activate 4 | sudo pip install --allow-all-external -r system/dependencies.txt 5 | -------------------------------------------------------------------------------- /week2/pylot-mvc/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/system/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/core/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/system/core/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/core/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/core/controller.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/core/controller.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/core/router.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/core/router.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/db/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/system/db/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/db/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/db/db_init.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/db/db_init.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/db/drivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/db/drivers/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/system/init/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/init/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/init/configuration.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/init/configuration.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/init/database.py: -------------------------------------------------------------------------------- 1 | from system.db.db_init import init_db 2 | 3 | def initialize_db(app): 4 | init_db(app) 5 | -------------------------------------------------------------------------------- /week2/pylot-mvc/system/init/database.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/init/database.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/system/init/routes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/system/init/routes.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/.Python: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/Python -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/bin/python: -------------------------------------------------------------------------------- 1 | python2.7 -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/bin/python2: -------------------------------------------------------------------------------- 1 | python2.7 -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/bin/python2.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/bin/python2.7 -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/include/python2.7: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/include/python2.7 -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/UserDict.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/UserDict.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/UserDict.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/_abcoll.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_abcoll.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/_abcoll.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/_abcoll.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/_weakrefset.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_weakrefset.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/_weakrefset.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/_weakrefset.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/abc.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/abc.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/abc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/abc.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/codecs.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/codecs.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/codecs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/codecs.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/config: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/config -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/copy_reg.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/copy_reg.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/copy_reg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/copy_reg.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/distutils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/distutils/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/encodings: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/encodings -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/fnmatch.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/fnmatch.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/fnmatch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/fnmatch.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/genericpath.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/genericpath.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/genericpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/genericpath.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/lib-dynload: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/linecache.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/linecache.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/linecache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/linecache.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/locale.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/locale.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/locale.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/locale.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/no-global-site-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/no-global-site-packages.txt -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/ntpath.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ntpath.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7 -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/os.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/os.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/os.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/posixpath.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/posixpath.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/posixpath.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/posixpath.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/re.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/re.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/re.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/re.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/_markerlib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/_markerlib/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/_markerlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/_markerlib/markers.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/easy_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/easy_install.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip-7.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip-7.1.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip:main 3 | pip3 = pip:main 4 | pip3.4 = pip:main 5 | 6 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip-7.1.2.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": true, "git_version": "78daccc"} -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip-7.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/__main__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/_markerlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/_markerlib/markers.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/cachecontrol/cache.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/ansi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/ansi.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/win32.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/winterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/colorama/winterm.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/compat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/database.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/database.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/index.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/locators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/locators.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/manifest.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/manifest.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/markers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/markers.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/metadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/metadata.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/resources.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/resources.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/scripts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/scripts.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/util.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/version.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/distlib/wheel.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/constants.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/ihatexml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/ihatexml.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/sanitizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/sanitizer.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/tokenizer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/tokenizer.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/trie/py.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/html5lib/utils.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/ipaddress.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/ipaddress.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/lockfile/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/packaging/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/packaging/_compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/packaging/_compat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/packaging/version.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/bar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/bar.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/counter.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/helpers.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/progress/spinner.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/re-vendor.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/re-vendor.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/adapters.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/adapters.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/api.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/api.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/auth.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/auth.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/certs.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/compat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/cookies.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/cookies.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/hooks.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/hooks.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/models.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import urllib3 4 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/sessions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/sessions.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/requests/utils.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/retrying.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/retrying.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/six.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/_vendor/six.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/basecommand.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/basecommand.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/baseparser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/baseparser.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/cmdoptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/cmdoptions.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/completion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/completion.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/freeze.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/help.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/help.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/install.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/list.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/list.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/search.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/show.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/show.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/uninstall.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/commands/wheel.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/compat/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/compat/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/compat/dictconfig.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/compat/dictconfig.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/download.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/download.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/exceptions.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/index.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/locations.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/locations.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/models/__init__.py: -------------------------------------------------------------------------------- 1 | from pip.models.index import Index, PyPI 2 | 3 | 4 | __all__ = ["Index", "PyPI"] 5 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/models/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/models/index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/models/index.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/operations/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/operations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/operations/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/operations/freeze.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/operations/freeze.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/pep425tags.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_file.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_file.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_install.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_set.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_set.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_uninstall.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/req/req_uninstall.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/status_codes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/status_codes.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/appdirs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/appdirs.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/build.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/build.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/deprecation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/deprecation.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/filesystem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/filesystem.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/logging.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/logging.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/outdated.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/outdated.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/ui.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/utils/ui.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/bazaar.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/bazaar.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/git.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/git.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/mercurial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/mercurial.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/subversion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/vcs/subversion.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pip/wheel.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pkg_resources/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pkg_resources/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/pkg_resources/_vendor/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools-18.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools-18.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _markerlib 2 | easy_install 3 | pkg_resources 4 | setuptools 5 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools-18.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/archive_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/archive_util.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli-arm-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli-arm-32.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/alias.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/alias.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/bdist_egg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/bdist_egg.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/bdist_rpm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/bdist_rpm.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/build_ext.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/build_ext.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/build_py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/build_py.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/develop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/develop.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/egg_info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/egg_info.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/install.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/install_lib.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/install_lib.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/register.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/register.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/rotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/rotate.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/saveopts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/saveopts.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/sdist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/sdist.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/setopt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/setopt.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/test.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/test.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/upload_docs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/command/upload_docs.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/compat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/depends.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/depends.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/dist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/dist.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/extension.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/extension.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui-arm-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui-arm-32.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/lib2to3_ex.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/msvc9_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/msvc9_support.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/package_index.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/package_index.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/py26compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/py26compat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/py27compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/py27compat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/py31compat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/py31compat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/sandbox.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/sandbox.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/site-patch.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/site-patch.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/ssl_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/ssl_support.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/unicode_utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/unicode_utils.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/utils.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '18.2' 2 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/version.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/version.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/windows_support.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/setuptools/windows_support.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel-0.24.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel-0.24.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wheel = wheel.tool:main 3 | 4 | [distutils.commands] 5 | bdist_wheel = wheel.bdist_wheel:bdist_wheel -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel-0.24.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | # __variables__ with double-quoted values will be available in setup.py: 2 | __version__ = "0.24.0" 3 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/__main__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/__main__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/archive.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/archive.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/bdist_wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/bdist_wheel.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/decorator.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/egg2wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/egg2wheel.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/install.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/metadata.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/metadata.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/paths.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/paths.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/pep425tags.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/pep425tags.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/pkginfo.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/pkginfo.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/djbec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/djbec.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/ed25519py.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/ed25519py.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/keys.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/signatures/keys.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/__init__.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/complex-dist/complexdist/__init__.py: -------------------------------------------------------------------------------- 1 | def main(): 2 | return 3 | -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/complex-dist/setup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/complex-dist/setup.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/headers.dist/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/headers.dist/header.h -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/headers.dist/setup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/headers.dist/setup.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/simple.dist/setup.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/simple.dist/setup.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_basic.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_basic.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_install.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_install.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_keys.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_keys.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_paths.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_paths.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_ranking.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_ranking.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_signatures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_signatures.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_tagopt.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_tagopt.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_tool.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_tool.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_wheelfile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/test/test_wheelfile.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/tool/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/tool/__init__.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/util.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/wininst2wheel.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site-packages/wheel/wininst2wheel.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/site.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/site.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/sre.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/sre_compile.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_compile.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/sre_compile.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/sre_compile.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/sre_constants.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_constants.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/sre_constants.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/sre_constants.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/sre_parse.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/sre_parse.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/sre_parse.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/sre_parse.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/stat.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/stat.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/stat.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/stat.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/types.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/types.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/types.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/types.pyc -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/warnings.py: -------------------------------------------------------------------------------- 1 | /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/warnings.py -------------------------------------------------------------------------------- /week2/pylot-mvc/venv/lib/python2.7/warnings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/pylot-mvc/venv/lib/python2.7/warnings.pyc -------------------------------------------------------------------------------- /week2/registration-form/templates/partial.html: -------------------------------------------------------------------------------- 1 | {% if errors %} 2 |
3 | {%- for msg in errors %} 4 |

{{ msg }}

5 | {% endfor -%} 6 |
7 | {% endif %} 8 | -------------------------------------------------------------------------------- /week2/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/server.py -------------------------------------------------------------------------------- /week2/test_templates/static/css/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /week2/test_templates/static/img/stevephone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/test_templates/static/img/stevephone.jpg -------------------------------------------------------------------------------- /week2/test_templates/static/js/script.js: -------------------------------------------------------------------------------- 1 | alert('hello flask'); 2 | -------------------------------------------------------------------------------- /week2/test_templates/static/script.js: -------------------------------------------------------------------------------- 1 | alert('hello flask'); 2 | -------------------------------------------------------------------------------- /week2/test_templates/static/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /week2/test_templates/templates/success.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Success 5 | 6 | 7 |

Yay you successfully created another GET route that serves a page

8 | 9 | 10 | -------------------------------------------------------------------------------- /week2/the-wall/Untitled.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/the-wall/Untitled.mwb -------------------------------------------------------------------------------- /week2/the-wall/mysqlconnection.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/the-wall/mysqlconnection.pyc -------------------------------------------------------------------------------- /week2/the-wall/templates/partial.html: -------------------------------------------------------------------------------- 1 | {% if errors %} 2 |
3 | {%- for msg in errors %} 4 |

{{ msg }}

5 | {% endfor -%} 6 |
7 | {% endif %} 8 | -------------------------------------------------------------------------------- /week2/the-wall/wall.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/the-wall/wall.mwb -------------------------------------------------------------------------------- /week2/the-wall/wall.mwb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week2/the-wall/wall.mwb.bak -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/templates/home/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Disappearing Ninjas 5 | 6 | 7 |

No ninjas here

8 | 9 | 10 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, url 2 | from apps.home import views 3 | urlpatterns = patterns('', 4 | url(r'^$', views.index, name='index'), 5 | ) 6 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | def index(request): 4 | return render(request, 'home/index.html') 5 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/home/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/home/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/static/ninja/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/static/ninja/css/style.css -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/static/ninja/img/leonardo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/static/ninja/img/leonardo.jpg -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/static/ninja/img/notapril.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/static/ninja/img/notapril.jpg -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/apps/ninja/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/apps/ninja/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/disappearing_ninja/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/disappearing_ninja/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/disappearing_ninja/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/disappearing_ninja/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/disappearing_ninja/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/disappearing_ninja/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/disappearing_ninja/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/disappearing_ninja/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/disappearing_ninja/disappearing_ninja/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/disappearing_ninja/disappearing_ninja/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/static/home/style.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: red; 3 | } 4 | 5 | p{ 6 | color: blue; 7 | } 8 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, url 2 | from apps.home import views 3 | urlpatterns = patterns('', 4 | url(r'^$', views.index, name='index'), 5 | ) 6 | 7 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/home/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/home/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/static/quiz/style.css: -------------------------------------------------------------------------------- 1 | li { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/apps/quiz/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/apps/quiz/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/first_project/first_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/first_project/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/first_project/first_project/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/first_project/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/first_project/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/first_project/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/first_project/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/first_project/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/first_project/first_project/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/first_project/first_project/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, url 2 | from apps.home import views 3 | 4 | urlpatterns = patterns('', 5 | url(r'^$', views.index, name='index'), 6 | ) 7 | 8 | -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/views.py: -------------------------------------------------------------------------------- 1 | from django.http import HttpResponse, Http404 2 | from django.shortcuts import render 3 | 4 | def index(request): 5 | return render(request, 'home/index.html') 6 | -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/home/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/home/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/apps/interests/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/apps/interests/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/model_practice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/model_practice/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/model_practice/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/model_practice/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/model_practice/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/model_practice/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/model_practice/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/model_practice/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/model_practice/model_practice/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/model_practice/model_practice/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/forms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/forms.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/urls.py -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/apps/home/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/apps/home/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/ninja_gold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/ninja_gold/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/ninja_gold/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/ninja_gold/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/ninja_gold/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/ninja_gold/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/ninja_gold/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/ninja_gold/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/ninja_gold/ninja_gold/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/ninja_gold/ninja_gold/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/forms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/forms.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/static/products/css/style.css: -------------------------------------------------------------------------------- 1 | .errorlist { 2 | margin-left: 0; 3 | padding-left: 0; 4 | } 5 | 6 | .errorlist li { 7 | list-style: none; 8 | color: red; 9 | } 10 | -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/apps/products/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/apps/products/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/product_catalogue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/product_catalogue/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/product_catalogue/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/product_catalogue/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/product_catalogue/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/product_catalogue/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/product_catalogue/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/product_catalogue/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/product_catalogue/product_catalogue/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/product_catalogue/product_catalogue/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/urls.py -------------------------------------------------------------------------------- /week4/django-essentials/random_string/apps/home/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/apps/home/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/random_string/random_string/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/random_string/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/random_string/random_string/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/random_string/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/random_string/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/random_string/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/random_string/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/random_string/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/random_string/random_string/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/random_string/random_string/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/game_page/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/game_page/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/game_page/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/game_page/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/game_page/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/game_page/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/game_page/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/login_reg/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/login_reg/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/login_reg/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/login_reg/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/login_reg/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/login_reg/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/login_reg/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/message_board/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/message_board/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/message_board/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/message_board/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/message_board/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/apps/message_board/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/apps/message_board/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/review/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/review/review/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/review/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/review/review/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/review/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/review/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/review/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/review/review/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/review/review/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, include, url 2 | from apps.surveys import views 3 | -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/apps/surveys/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/apps/surveys/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/survey_form/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/survey_form/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/survey_form/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/survey_form/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/survey_form/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/survey_form/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/survey_form/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/survey_form/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/survey_form/survey_form/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/survey_form/survey_form/wsgi.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/admin.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/migrations/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/migrations/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/models.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns, url 2 | from apps.times import views 3 | urlpatterns = patterns('', 4 | url(r'^$', views.index, name='index'), 5 | ) 6 | -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/apps/times/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/apps/times/views.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/db.sqlite3 -------------------------------------------------------------------------------- /week4/django-essentials/time_display/time_display/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/time_display/__init__.py -------------------------------------------------------------------------------- /week4/django-essentials/time_display/time_display/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/time_display/__init__.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/time_display/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/time_display/settings.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/time_display/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/time_display/urls.pyc -------------------------------------------------------------------------------- /week4/django-essentials/time_display/time_display/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week4/django-essentials/time_display/time_display/wsgi.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/advanced_model_techniques/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/advanced_model_techniques/__init__.py -------------------------------------------------------------------------------- /week5/advanced_model_techniques/advanced_model_techniques/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/advanced_model_techniques/__init__.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/advanced_model_techniques/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/advanced_model_techniques/settings.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/advanced_model_techniques/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/advanced_model_techniques/urls.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/advanced_model_techniques/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/advanced_model_techniques/wsgi.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/__init__.py -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/__init__.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/__init__.py -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/__init__.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Product 3 | # Register your models here. 4 | admin.site.register(Product) 5 | -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/admin.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/migrations/__init__.py -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/migrations/__init__.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/models.pyc -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/templates/store/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/store/templates/store/index.html -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/store/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /week5/advanced_model_techniques/apps/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/apps/urls.py -------------------------------------------------------------------------------- /week5/advanced_model_techniques/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/advanced_model_techniques/db.sqlite3 -------------------------------------------------------------------------------- /week5/class_based_views/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/__init__.py -------------------------------------------------------------------------------- /week5/class_based_views/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/__init__.pyc -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/sums/__init__.py -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/sums/__init__.pyc -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/sums/admin.pyc -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/sums/migrations/__init__.py -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/sums/migrations/__init__.pyc -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/sums/models.pyc -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week5/class_based_views/apps/sums/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/apps/sums/views.pyc -------------------------------------------------------------------------------- /week5/class_based_views/class_based_views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/class_based_views/__init__.py -------------------------------------------------------------------------------- /week5/class_based_views/class_based_views/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/class_based_views/__init__.pyc -------------------------------------------------------------------------------- /week5/class_based_views/class_based_views/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/class_based_views/settings.pyc -------------------------------------------------------------------------------- /week5/class_based_views/class_based_views/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/class_based_views/urls.pyc -------------------------------------------------------------------------------- /week5/class_based_views/class_based_views/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/class_based_views/wsgi.pyc -------------------------------------------------------------------------------- /week5/class_based_views/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/class_based_views/db.sqlite3 -------------------------------------------------------------------------------- /week5/exercise_1/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/__init__.py -------------------------------------------------------------------------------- /week5/exercise_1/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/__init__.pyc -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/__init__.py -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/__init__.pyc -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/admin.pyc -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/migrations/__init__.py -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/migrations/__init__.pyc -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/models.pyc -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/urls.py -------------------------------------------------------------------------------- /week5/exercise_1/apps/message/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/apps/message/views.pyc -------------------------------------------------------------------------------- /week5/exercise_1/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/db.sqlite3 -------------------------------------------------------------------------------- /week5/exercise_1/exercise_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/exercise_1/__init__.py -------------------------------------------------------------------------------- /week5/exercise_1/exercise_1/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/exercise_1/__init__.pyc -------------------------------------------------------------------------------- /week5/exercise_1/exercise_1/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/exercise_1/settings.pyc -------------------------------------------------------------------------------- /week5/exercise_1/exercise_1/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/exercise_1/urls.pyc -------------------------------------------------------------------------------- /week5/exercise_1/exercise_1/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/exercise_1/exercise_1/wsgi.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/__init__.py -------------------------------------------------------------------------------- /week5/generic_views/apps/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/__init__.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/school/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/__init__.py -------------------------------------------------------------------------------- /week5/generic_views/apps/school/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/__init__.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/school/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/admin.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/school/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/school/migrations/0002_auto_20151130_2104.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/migrations/0002_auto_20151130_2104.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/school/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/migrations/__init__.py -------------------------------------------------------------------------------- /week5/generic_views/apps/school/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/migrations/__init__.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/school/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/models.pyc -------------------------------------------------------------------------------- /week5/generic_views/apps/school/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /week5/generic_views/apps/school/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/apps/school/views.pyc -------------------------------------------------------------------------------- /week5/generic_views/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/db.sqlite3 -------------------------------------------------------------------------------- /week5/generic_views/generic_views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/generic_views/__init__.py -------------------------------------------------------------------------------- /week5/generic_views/generic_views/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/generic_views/__init__.pyc -------------------------------------------------------------------------------- /week5/generic_views/generic_views/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/generic_views/settings.pyc -------------------------------------------------------------------------------- /week5/generic_views/generic_views/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/generic_views/urls.pyc -------------------------------------------------------------------------------- /week5/generic_views/generic_views/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmleong/coding-dojo/98164197da470170fbfe3983c7b82fc003aa953c/week5/generic_views/generic_views/wsgi.pyc --------------------------------------------------------------------------------