├── .gitignore ├── README.md ├── data ├── DataTemp1.dat ├── DataTemp10.dat ├── DataTemp11.dat ├── DataTemp12.dat ├── DataTemp13.dat ├── DataTemp3.dat ├── DataTemp4.dat ├── DataTemp5.dat ├── DataTemp6.dat ├── DataTemp7.dat ├── DataTemp8.dat └── DataTemp9.dat ├── exercises ├── flask-bitcoin │ ├── Procfile │ ├── README.md │ ├── app.py │ ├── bitcoin.db │ ├── data.py │ ├── db.py │ ├── requirements.txt │ ├── run.sh │ ├── scheduler.py │ └── templates │ │ └── index.html ├── flask-bokeh-class │ ├── app.py │ ├── data.dat │ ├── db.py │ ├── greenhouse.db │ └── templates │ │ └── chart.html ├── flask-bokeh │ ├── DataTemp1.dat │ ├── DataTemp2.dat │ ├── app.py │ ├── bokeh.db │ ├── db.py │ └── templates │ │ └── index.html ├── flask-calculator │ ├── app.py │ ├── calc.db │ ├── db.py │ └── templates │ │ ├── calc.html │ │ └── index.html └── flask-hello-world │ └── app.py ├── lessons ├── 01-intro.md ├── 02-flask.md ├── 03-visualization.md ├── 04-retrieval.md ├── 05-retrieval_redux.md └── bonus │ ├── heroku.md │ └── sqlalchemy.md ├── outline.md ├── package.json └── slides ├── day1.md ├── day2.md ├── day3.md ├── day4.md ├── day5.md └── images ├── flask.png ├── galvanize.png ├── realpython_logo.png └── whoami.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | env 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/README.md -------------------------------------------------------------------------------- /data/DataTemp1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp1.dat -------------------------------------------------------------------------------- /data/DataTemp10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp10.dat -------------------------------------------------------------------------------- /data/DataTemp11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp11.dat -------------------------------------------------------------------------------- /data/DataTemp12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp12.dat -------------------------------------------------------------------------------- /data/DataTemp13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp13.dat -------------------------------------------------------------------------------- /data/DataTemp3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp3.dat -------------------------------------------------------------------------------- /data/DataTemp4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp4.dat -------------------------------------------------------------------------------- /data/DataTemp5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp5.dat -------------------------------------------------------------------------------- /data/DataTemp6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp6.dat -------------------------------------------------------------------------------- /data/DataTemp7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp7.dat -------------------------------------------------------------------------------- /data/DataTemp8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp8.dat -------------------------------------------------------------------------------- /data/DataTemp9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/data/DataTemp9.dat -------------------------------------------------------------------------------- /exercises/flask-bitcoin/Procfile: -------------------------------------------------------------------------------- 1 | web: sh run.sh 2 | -------------------------------------------------------------------------------- /exercises/flask-bitcoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/README.md -------------------------------------------------------------------------------- /exercises/flask-bitcoin/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/app.py -------------------------------------------------------------------------------- /exercises/flask-bitcoin/bitcoin.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/bitcoin.db -------------------------------------------------------------------------------- /exercises/flask-bitcoin/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/data.py -------------------------------------------------------------------------------- /exercises/flask-bitcoin/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/db.py -------------------------------------------------------------------------------- /exercises/flask-bitcoin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/requirements.txt -------------------------------------------------------------------------------- /exercises/flask-bitcoin/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | gunicorn app:app -D 4 | python scheduler.py 5 | -------------------------------------------------------------------------------- /exercises/flask-bitcoin/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/scheduler.py -------------------------------------------------------------------------------- /exercises/flask-bitcoin/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bitcoin/templates/index.html -------------------------------------------------------------------------------- /exercises/flask-bokeh-class/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh-class/app.py -------------------------------------------------------------------------------- /exercises/flask-bokeh-class/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh-class/data.dat -------------------------------------------------------------------------------- /exercises/flask-bokeh-class/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh-class/db.py -------------------------------------------------------------------------------- /exercises/flask-bokeh-class/greenhouse.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh-class/greenhouse.db -------------------------------------------------------------------------------- /exercises/flask-bokeh-class/templates/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh-class/templates/chart.html -------------------------------------------------------------------------------- /exercises/flask-bokeh/DataTemp1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh/DataTemp1.dat -------------------------------------------------------------------------------- /exercises/flask-bokeh/DataTemp2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh/DataTemp2.dat -------------------------------------------------------------------------------- /exercises/flask-bokeh/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh/app.py -------------------------------------------------------------------------------- /exercises/flask-bokeh/bokeh.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh/bokeh.db -------------------------------------------------------------------------------- /exercises/flask-bokeh/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh/db.py -------------------------------------------------------------------------------- /exercises/flask-bokeh/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-bokeh/templates/index.html -------------------------------------------------------------------------------- /exercises/flask-calculator/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-calculator/app.py -------------------------------------------------------------------------------- /exercises/flask-calculator/calc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-calculator/calc.db -------------------------------------------------------------------------------- /exercises/flask-calculator/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-calculator/db.py -------------------------------------------------------------------------------- /exercises/flask-calculator/templates/calc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-calculator/templates/calc.html -------------------------------------------------------------------------------- /exercises/flask-calculator/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-calculator/templates/index.html -------------------------------------------------------------------------------- /exercises/flask-hello-world/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/exercises/flask-hello-world/app.py -------------------------------------------------------------------------------- /lessons/01-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/lessons/01-intro.md -------------------------------------------------------------------------------- /lessons/02-flask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/lessons/02-flask.md -------------------------------------------------------------------------------- /lessons/03-visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/lessons/03-visualization.md -------------------------------------------------------------------------------- /lessons/04-retrieval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/lessons/04-retrieval.md -------------------------------------------------------------------------------- /lessons/05-retrieval_redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/lessons/05-retrieval_redux.md -------------------------------------------------------------------------------- /lessons/bonus/heroku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/lessons/bonus/heroku.md -------------------------------------------------------------------------------- /lessons/bonus/sqlalchemy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/lessons/bonus/sqlalchemy.md -------------------------------------------------------------------------------- /outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/outline.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/package.json -------------------------------------------------------------------------------- /slides/day1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/day1.md -------------------------------------------------------------------------------- /slides/day2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/day2.md -------------------------------------------------------------------------------- /slides/day3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/day3.md -------------------------------------------------------------------------------- /slides/day4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/day4.md -------------------------------------------------------------------------------- /slides/day5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/day5.md -------------------------------------------------------------------------------- /slides/images/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/images/flask.png -------------------------------------------------------------------------------- /slides/images/galvanize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/images/galvanize.png -------------------------------------------------------------------------------- /slides/images/realpython_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/images/realpython_logo.png -------------------------------------------------------------------------------- /slides/images/whoami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/web-dev-for-data-scientists/HEAD/slides/images/whoami.png --------------------------------------------------------------------------------