├── Chapter01 └── Chapter01.ipynb ├── Chapter02 ├── Chapter02.ipynb ├── OECD-THND_TONNES.txt └── test.txt ├── Chapter03 └── Chapter03.ipynb ├── Chapter04 ├── Chapter04.ipynb ├── TM_WORLD_BORDERS_SIMPL-0.3.shp ├── crypto-markets.csv ├── futureB.ppt.totals.median.shp ├── intel-cpu-7+8.csv └── mpldev_ch04_rose.jpg ├── Chapter05 ├── Chapter05.ipynb ├── chp5.py ├── chp51.py ├── chp52.py ├── chp53.py ├── chp54.glade └── chp54.py ├── Chapter06 └── Chapter06.ipynb ├── Chapter07 └── Chapter07.ipynb ├── Chapter08 ├── Django │ ├── Dockerfile │ ├── crypto_stats │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── Pipfile │ │ ├── Pipfile.lock │ │ ├── README.md │ │ ├── docs │ │ │ └── index.md │ │ ├── logs │ │ │ └── README.md │ │ ├── requirements.txt │ │ ├── requirements │ │ │ ├── base.txt │ │ │ ├── development.txt │ │ │ └── production.txt │ │ └── src │ │ │ ├── accounts │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── accounts │ │ │ │ │ ├── auth_base.html │ │ │ │ │ ├── emails │ │ │ │ │ ├── password-reset-email.html │ │ │ │ │ └── password-reset-subject.txt │ │ │ │ │ ├── login.html │ │ │ │ │ ├── password-change.html │ │ │ │ │ ├── password-reset-confirm.html │ │ │ │ │ ├── password-reset-done.html │ │ │ │ │ ├── password-reset.html │ │ │ │ │ └── signup.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── bitcoin │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── crypto_stats │ │ │ ├── __init__.py │ │ │ ├── logger.py │ │ │ ├── settings │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── development.py │ │ │ │ ├── local.sample.env │ │ │ │ └── production.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ ├── media │ │ │ └── default_profile.png │ │ │ ├── profiles │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── signals.py │ │ │ ├── templates │ │ │ │ └── profiles │ │ │ │ │ ├── edit_profile.html │ │ │ │ │ └── show_profile.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── static │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ └── site │ │ │ │ ├── css │ │ │ │ └── main.css │ │ │ │ ├── ico │ │ │ │ └── favicon.ico │ │ │ │ ├── img │ │ │ │ ├── banner.jpg │ │ │ │ ├── logo-big.png │ │ │ │ └── logo.png │ │ │ │ └── js │ │ │ │ └── site.js │ │ │ └── templates │ │ │ ├── _brandname.html │ │ │ ├── _navbar.html │ │ │ ├── about.html │ │ │ ├── base.html │ │ │ ├── home.html │ │ │ └── registration │ │ │ ├── logged_out.html │ │ │ ├── password_change_done.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ └── password_reset_form.html │ └── requirements.txt ├── views1.py └── views2.py ├── Chapter09 ├── Chapter09.ipynb └── interactive.py ├── Chapter10 └── Chapter10.ipynb ├── LICENSE ├── README.md └── extra_ch9 ├── ch 09_GIF.gif └── ch09_animation.mp4 /Chapter01/Chapter01.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter01/Chapter01.ipynb -------------------------------------------------------------------------------- /Chapter02/Chapter02.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter02/Chapter02.ipynb -------------------------------------------------------------------------------- /Chapter02/OECD-THND_TONNES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter02/OECD-THND_TONNES.txt -------------------------------------------------------------------------------- /Chapter02/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter02/test.txt -------------------------------------------------------------------------------- /Chapter03/Chapter03.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter03/Chapter03.ipynb -------------------------------------------------------------------------------- /Chapter04/Chapter04.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter04/Chapter04.ipynb -------------------------------------------------------------------------------- /Chapter04/TM_WORLD_BORDERS_SIMPL-0.3.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter04/TM_WORLD_BORDERS_SIMPL-0.3.shp -------------------------------------------------------------------------------- /Chapter04/crypto-markets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter04/crypto-markets.csv -------------------------------------------------------------------------------- /Chapter04/futureB.ppt.totals.median.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter04/futureB.ppt.totals.median.shp -------------------------------------------------------------------------------- /Chapter04/intel-cpu-7+8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter04/intel-cpu-7+8.csv -------------------------------------------------------------------------------- /Chapter04/mpldev_ch04_rose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter04/mpldev_ch04_rose.jpg -------------------------------------------------------------------------------- /Chapter05/Chapter05.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter05/Chapter05.ipynb -------------------------------------------------------------------------------- /Chapter05/chp5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter05/chp5.py -------------------------------------------------------------------------------- /Chapter05/chp51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter05/chp51.py -------------------------------------------------------------------------------- /Chapter05/chp52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter05/chp52.py -------------------------------------------------------------------------------- /Chapter05/chp53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter05/chp53.py -------------------------------------------------------------------------------- /Chapter05/chp54.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter05/chp54.glade -------------------------------------------------------------------------------- /Chapter05/chp54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter05/chp54.py -------------------------------------------------------------------------------- /Chapter06/Chapter06.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter06/Chapter06.ipynb -------------------------------------------------------------------------------- /Chapter07/Chapter07.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter07/Chapter07.ipynb -------------------------------------------------------------------------------- /Chapter08/Django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/Dockerfile -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/.gitignore -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/.travis.yml -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/LICENSE.txt -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/Pipfile -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/Pipfile.lock -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/README.md -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/docs/index.md -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/logs/README.md -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/requirements.txt -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/requirements/base.txt -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/requirements/development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/requirements/development.txt -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/requirements/production.txt -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/admin.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/forms.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/models.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/auth_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/auth_base.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/emails/password-reset-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/emails/password-reset-email.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/emails/password-reset-subject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/emails/password-reset-subject.txt -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/login.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-change.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-reset-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-reset-confirm.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-reset-done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-reset-done.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/password-reset.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/templates/accounts/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/templates/accounts/signup.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/tests.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/urls.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/accounts/views.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/bitcoin/admin.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/bitcoin/apps.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/bitcoin/models.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/bitcoin/tests.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/bitcoin/urls.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/bitcoin/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/bitcoin/views.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/logger.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/settings/base.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/settings/development.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/settings/local.sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/settings/local.sample.env -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/settings/production.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/urls.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/views.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/crypto_stats/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/crypto_stats/wsgi.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/manage.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/media/default_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/media/default_profile.png -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/__init__.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/admin.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/apps.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/forms.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/migrations/0001_initial.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/models.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/signals.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/templates/profiles/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/templates/profiles/edit_profile.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/templates/profiles/show_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/templates/profiles/show_profile.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/tests.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/urls.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/profiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/profiles/views.py -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/site/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/site/css/main.css -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/site/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/site/ico/favicon.ico -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/site/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/site/img/banner.jpg -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/site/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/site/img/logo-big.png -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/site/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/site/img/logo.png -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/static/site/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/static/site/js/site.js -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/_brandname.html: -------------------------------------------------------------------------------- 1 | Crypto_Stats 2 | -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/_navbar.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/about.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/base.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/home.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/registration/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/registration/logged_out.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/registration/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/registration/password_change_done.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/registration/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/registration/password_change_form.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/registration/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/registration/password_reset_complete.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/registration/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/registration/password_reset_confirm.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/registration/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/registration/password_reset_done.html -------------------------------------------------------------------------------- /Chapter08/Django/crypto_stats/src/templates/registration/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/crypto_stats/src/templates/registration/password_reset_form.html -------------------------------------------------------------------------------- /Chapter08/Django/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/Django/requirements.txt -------------------------------------------------------------------------------- /Chapter08/views1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/views1.py -------------------------------------------------------------------------------- /Chapter08/views2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter08/views2.py -------------------------------------------------------------------------------- /Chapter09/Chapter09.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter09/Chapter09.ipynb -------------------------------------------------------------------------------- /Chapter09/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter09/interactive.py -------------------------------------------------------------------------------- /Chapter10/Chapter10.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/Chapter10/Chapter10.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/README.md -------------------------------------------------------------------------------- /extra_ch9/ch 09_GIF.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/extra_ch9/ch 09_GIF.gif -------------------------------------------------------------------------------- /extra_ch9/ch09_animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Matplotlib-for-Python-Developers-Second-Edition/HEAD/extra_ch9/ch09_animation.mp4 --------------------------------------------------------------------------------