├── .github └── CODE_OF_CONDUCT.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── feedback.png ├── names.py └── requirements.txt └── problems ├── data_science ├── Analysis-Key.ipynb ├── Analysis-Workshop.ipynb ├── Introduction-to-Text-Analysis-with-sklearn-preview.ipynb ├── Introduction_to_Text_Analysis_with_sklearn.ipynb ├── battery_life │ └── README.md ├── chipmunks │ ├── chipmunk.csv │ ├── data_science_project_night_4_18_19.ipynb │ ├── logo@3x.png │ └── requirements.txt ├── diversif.ai.ipynb ├── github_jobs_api │ ├── README.md │ ├── requirements.txt │ └── upsetplot-example.png ├── home_credit_default_risk │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── default_risk.ipynb │ ├── default_risk_column_descriptions.csv │ ├── default_risk_test_data.csv │ ├── default_risk_train_data.csv │ └── perfect_deliverable.csv ├── requirements.txt ├── talks.csv ├── team_project.ipynb ├── text-analysis.jpg └── trackcoder.ipynb ├── py101 ├── make_a_game │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── lib │ │ ├── __init__.py │ │ └── player.py │ ├── run.py │ └── tests │ │ ├── __init__.py │ │ └── test_player.py ├── python_koans │ └── README.md ├── python_team_project │ ├── README.md │ ├── app.py │ └── requirements.txt ├── testing │ ├── EnableTravisCI.png │ ├── Makefile │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── pytest.ini │ ├── team_organizer.py │ ├── test_team_organizer.py │ └── travis-build-img.png └── trackcoder │ ├── Makefile │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── app.py │ ├── csv.png │ ├── project.png │ └── to_do_list.db └── webdev ├── django_pn_tracker ├── .dockerignore ├── .gitignore ├── README.md ├── db.sqlite3 ├── django_pn_tracker │ ├── __init__.py │ ├── apps │ │ ├── __init__.py │ │ └── challenges │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ └── challenges │ │ │ │ ├── delete.html │ │ │ │ ├── edit.html │ │ │ │ └── list.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ ├── settings.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── master.css │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── main.js │ ├── templates │ │ ├── base.html │ │ └── index.html │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── manage.py ├── requirements.txt └── setup.cfg ├── django_rest_framework_api ├── Pipfile ├── Pipfile.lock └── README.md ├── flask_collage ├── README.md └── solutions │ ├── dormamu_bargain │ └── README.md │ └── testflask.py ├── flask_exchange_rates └── README.md ├── flask_team_project ├── README.md ├── app.py ├── requirements.txt └── templates │ ├── rsvps.html │ └── teams.html └── flask_trackcoder ├── README.md ├── app.py ├── dashboard.gif ├── requirements.txt ├── static └── styles │ └── dashboard.css └── templates └── tasks.html /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/README.md -------------------------------------------------------------------------------- /docs/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/docs/feedback.png -------------------------------------------------------------------------------- /docs/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/docs/names.py -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | nameparser 2 | pandas -------------------------------------------------------------------------------- /problems/data_science/Analysis-Key.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/Analysis-Key.ipynb -------------------------------------------------------------------------------- /problems/data_science/Analysis-Workshop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/Analysis-Workshop.ipynb -------------------------------------------------------------------------------- /problems/data_science/Introduction-to-Text-Analysis-with-sklearn-preview.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/Introduction-to-Text-Analysis-with-sklearn-preview.ipynb -------------------------------------------------------------------------------- /problems/data_science/Introduction_to_Text_Analysis_with_sklearn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/Introduction_to_Text_Analysis_with_sklearn.ipynb -------------------------------------------------------------------------------- /problems/data_science/battery_life/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/battery_life/README.md -------------------------------------------------------------------------------- /problems/data_science/chipmunks/chipmunk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/chipmunks/chipmunk.csv -------------------------------------------------------------------------------- /problems/data_science/chipmunks/data_science_project_night_4_18_19.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/chipmunks/data_science_project_night_4_18_19.ipynb -------------------------------------------------------------------------------- /problems/data_science/chipmunks/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/chipmunks/logo@3x.png -------------------------------------------------------------------------------- /problems/data_science/chipmunks/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/chipmunks/requirements.txt -------------------------------------------------------------------------------- /problems/data_science/diversif.ai.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/diversif.ai.ipynb -------------------------------------------------------------------------------- /problems/data_science/github_jobs_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/github_jobs_api/README.md -------------------------------------------------------------------------------- /problems/data_science/github_jobs_api/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /problems/data_science/github_jobs_api/upsetplot-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/github_jobs_api/upsetplot-example.png -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/Pipfile -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/Pipfile.lock -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/README.md -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/default_risk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/default_risk.ipynb -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/default_risk_column_descriptions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/default_risk_column_descriptions.csv -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/default_risk_test_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/default_risk_test_data.csv -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/default_risk_train_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/default_risk_train_data.csv -------------------------------------------------------------------------------- /problems/data_science/home_credit_default_risk/perfect_deliverable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/home_credit_default_risk/perfect_deliverable.csv -------------------------------------------------------------------------------- /problems/data_science/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/requirements.txt -------------------------------------------------------------------------------- /problems/data_science/talks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/talks.csv -------------------------------------------------------------------------------- /problems/data_science/team_project.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/team_project.ipynb -------------------------------------------------------------------------------- /problems/data_science/text-analysis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/text-analysis.jpg -------------------------------------------------------------------------------- /problems/data_science/trackcoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/data_science/trackcoder.ipynb -------------------------------------------------------------------------------- /problems/py101/make_a_game/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/make_a_game/Pipfile -------------------------------------------------------------------------------- /problems/py101/make_a_game/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/make_a_game/Pipfile.lock -------------------------------------------------------------------------------- /problems/py101/make_a_game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/make_a_game/README.md -------------------------------------------------------------------------------- /problems/py101/make_a_game/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /problems/py101/make_a_game/lib/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/make_a_game/lib/player.py -------------------------------------------------------------------------------- /problems/py101/make_a_game/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/make_a_game/run.py -------------------------------------------------------------------------------- /problems/py101/make_a_game/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /problems/py101/make_a_game/tests/test_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/make_a_game/tests/test_player.py -------------------------------------------------------------------------------- /problems/py101/python_koans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/python_koans/README.md -------------------------------------------------------------------------------- /problems/py101/python_team_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/python_team_project/README.md -------------------------------------------------------------------------------- /problems/py101/python_team_project/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/python_team_project/app.py -------------------------------------------------------------------------------- /problems/py101/python_team_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/python_team_project/requirements.txt -------------------------------------------------------------------------------- /problems/py101/testing/EnableTravisCI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/EnableTravisCI.png -------------------------------------------------------------------------------- /problems/py101/testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/Makefile -------------------------------------------------------------------------------- /problems/py101/testing/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/Pipfile -------------------------------------------------------------------------------- /problems/py101/testing/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/Pipfile.lock -------------------------------------------------------------------------------- /problems/py101/testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/README.md -------------------------------------------------------------------------------- /problems/py101/testing/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/pytest.ini -------------------------------------------------------------------------------- /problems/py101/testing/team_organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/team_organizer.py -------------------------------------------------------------------------------- /problems/py101/testing/test_team_organizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/test_team_organizer.py -------------------------------------------------------------------------------- /problems/py101/testing/travis-build-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/testing/travis-build-img.png -------------------------------------------------------------------------------- /problems/py101/trackcoder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/Makefile -------------------------------------------------------------------------------- /problems/py101/trackcoder/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/Pipfile -------------------------------------------------------------------------------- /problems/py101/trackcoder/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/Pipfile.lock -------------------------------------------------------------------------------- /problems/py101/trackcoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/README.md -------------------------------------------------------------------------------- /problems/py101/trackcoder/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/app.py -------------------------------------------------------------------------------- /problems/py101/trackcoder/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/csv.png -------------------------------------------------------------------------------- /problems/py101/trackcoder/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/project.png -------------------------------------------------------------------------------- /problems/py101/trackcoder/to_do_list.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/py101/trackcoder/to_do_list.db -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/.dockerignore -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/.gitignore -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/README.md -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/db.sqlite3 -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/admin.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/apps.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/forms.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/migrations/0001_initial.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/models.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/templates/challenges/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/templates/challenges/delete.html -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/templates/challenges/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/templates/challenges/edit.html -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/templates/challenges/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/templates/challenges/list.html -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/tests.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/urls.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/apps/challenges/views.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/settings.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/static/css/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/static/css/master.css -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/static/js/main.js -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/templates/base.html -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/templates/index.html -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/urls.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/views.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/django_pn_tracker/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/django_pn_tracker/wsgi.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/manage.py -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/requirements.txt: -------------------------------------------------------------------------------- 1 | django==2.1 2 | -------------------------------------------------------------------------------- /problems/webdev/django_pn_tracker/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_pn_tracker/setup.cfg -------------------------------------------------------------------------------- /problems/webdev/django_rest_framework_api/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_rest_framework_api/Pipfile -------------------------------------------------------------------------------- /problems/webdev/django_rest_framework_api/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_rest_framework_api/Pipfile.lock -------------------------------------------------------------------------------- /problems/webdev/django_rest_framework_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/django_rest_framework_api/README.md -------------------------------------------------------------------------------- /problems/webdev/flask_collage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_collage/README.md -------------------------------------------------------------------------------- /problems/webdev/flask_collage/solutions/dormamu_bargain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_collage/solutions/dormamu_bargain/README.md -------------------------------------------------------------------------------- /problems/webdev/flask_collage/solutions/testflask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_collage/solutions/testflask.py -------------------------------------------------------------------------------- /problems/webdev/flask_exchange_rates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_exchange_rates/README.md -------------------------------------------------------------------------------- /problems/webdev/flask_team_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_team_project/README.md -------------------------------------------------------------------------------- /problems/webdev/flask_team_project/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_team_project/app.py -------------------------------------------------------------------------------- /problems/webdev/flask_team_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_team_project/requirements.txt -------------------------------------------------------------------------------- /problems/webdev/flask_team_project/templates/rsvps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_team_project/templates/rsvps.html -------------------------------------------------------------------------------- /problems/webdev/flask_team_project/templates/teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_team_project/templates/teams.html -------------------------------------------------------------------------------- /problems/webdev/flask_trackcoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_trackcoder/README.md -------------------------------------------------------------------------------- /problems/webdev/flask_trackcoder/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_trackcoder/app.py -------------------------------------------------------------------------------- /problems/webdev/flask_trackcoder/dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_trackcoder/dashboard.gif -------------------------------------------------------------------------------- /problems/webdev/flask_trackcoder/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | peewee 3 | prompt_toolkit 4 | click 5 | Flask-WTF -------------------------------------------------------------------------------- /problems/webdev/flask_trackcoder/static/styles/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_trackcoder/static/styles/dashboard.css -------------------------------------------------------------------------------- /problems/webdev/flask_trackcoder/templates/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chicagopython/CodingWorkshops/HEAD/problems/webdev/flask_trackcoder/templates/tasks.html --------------------------------------------------------------------------------