├── .gitattributes ├── .gitignore ├── LICENSE ├── Module 1 ├── Chapter01 │ ├── hello.conf │ ├── hello.py │ └── hello.wsgi ├── Chapter02 │ ├── headlines.conf │ ├── headlines.py │ └── headlines.wsgi ├── Chapter03 │ ├── headlines.py │ └── templates │ │ └── home.html ├── Chapter04 │ ├── headlines.py │ └── templates │ │ └── home.html ├── Chapter05 │ ├── headlines.py │ └── templates │ │ └── home.html ├── Chapter06 │ ├── crimemap.py │ ├── crimemap.wsgi │ ├── db_setup.py │ ├── dbconfig.py │ ├── dbhelper.py │ ├── misc │ │ └── crimemap.conf │ └── templates │ │ └── home.html ├── Chapter07 │ ├── crimemap.py │ ├── db_setup.py │ ├── dbconfig.py │ ├── dbhelper.py │ ├── misc │ │ ├── crimemap.conf │ │ └── crimemap.wsgi │ ├── mockdbhelper.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ └── home.html ├── Chapter08 │ ├── crimemap.py │ ├── db_setup.py │ ├── dbconfig.py │ ├── dbhelper.py │ ├── misc │ │ ├── crimemap.conf │ │ └── crimemap.wsgi │ ├── mockdbhelper.py │ ├── static │ │ └── css │ │ │ └── style.css │ └── templates │ │ └── home.html ├── Chapter09 │ ├── config.py │ ├── mockdbhelper.py │ ├── passwordhelper.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── templates │ │ └── home.html │ ├── user.py │ ├── waitercaller.py │ └── waitercaller.wsgi ├── Chapter10 │ ├── bitlyhelper.py │ ├── config.py │ ├── forms.py │ ├── mockbitlyhelper.py │ ├── mockdbhelper.py │ ├── passwordhelper.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── templates │ │ ├── account.html │ │ ├── base.html │ │ ├── dashboard.html │ │ ├── home.html │ │ └── home_1.html │ ├── user.py │ ├── waitercaller.py │ └── waitercaller.wsgi ├── Chapter11 │ ├── .gitignore │ ├── bitlyhelper.py │ ├── create_mongo_indices.py │ ├── dbhelper.py │ ├── forms.py │ ├── mockbitlyhelper.py │ ├── mockdbhelper.py │ ├── passwordhelper.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── templates │ │ ├── account.html │ │ ├── base.html │ │ ├── dashboard.html │ │ └── home.html │ ├── user.py │ ├── waitercaller.py │ └── waitercaller.wsgi ├── ReadMe.txt └── Software Hardware List.docx ├── Module 2 ├── Chapter01 │ ├── app.py │ ├── my_app │ │ ├── __init__.py │ │ └── hello │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ ├── run.py │ └── setup.py ├── Chapter02 │ ├── my_app │ │ ├── __init__.py │ │ ├── product │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ └── templates │ │ │ ├── base.html │ │ │ ├── home.html │ │ │ └── product.html │ ├── run.py │ └── setup.py ├── Chapter03 │ ├── migrations │ │ ├── README │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── env.pyc │ │ ├── script.py.mako │ │ └── versions │ │ │ ├── 538264df91d2_.py │ │ │ └── 538264df91d2_.pyc │ ├── my_app │ │ ├── __init__.py │ │ └── catalog │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ └── run.py ├── Chapter04 │ ├── my_app │ │ ├── __init__.py │ │ ├── catalog │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ └── templates │ │ │ ├── 404.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category.html │ │ │ ├── home.html │ │ │ ├── product-create.html │ │ │ ├── product.html │ │ │ └── products.html │ └── run.py ├── Chapter05 │ ├── my_app │ │ ├── __init__.py │ │ ├── catalog │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ ├── js │ │ │ │ └── bootstrap.min.js │ │ │ └── uploads │ │ │ │ └── apple-iphone-5-front.jpg │ │ └── templates │ │ │ ├── 404.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category-create.html │ │ │ ├── category.html │ │ │ ├── home.html │ │ │ ├── product-create.html │ │ │ ├── product.html │ │ │ └── products.html │ └── run.py ├── Chapter06 │ ├── my_app │ │ ├── __init__.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ └── templates │ │ │ ├── base.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ └── register.html │ └── run.py ├── Chapter07 │ ├── my_app │ │ ├── __init__.py │ │ ├── catalog │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ └── templates │ │ │ ├── 404.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category.html │ │ │ ├── home.html │ │ │ ├── product-create.html │ │ │ ├── product.html │ │ │ └── products.html │ └── run.py ├── Chapter08 │ ├── my_app │ │ ├── __init__.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ └── templates │ │ │ ├── admin-home.html │ │ │ ├── base.html │ │ │ ├── edit.html │ │ │ ├── home.html │ │ │ ├── login.html │ │ │ ├── register.html │ │ │ ├── some-template.html │ │ │ ├── user-create-admin.html │ │ │ ├── user-update-admin.html │ │ │ └── users-list-admin.html │ └── run.py ├── Chapter09 │ ├── my_app │ │ ├── __init__.py │ │ ├── babel.cfg │ │ ├── catalog │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── messages.pot │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ ├── js │ │ │ │ └── bootstrap.min.js │ │ │ └── uploads │ │ │ │ └── apple-iphone-5-front.jpg │ │ ├── templates │ │ │ ├── 404.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category-create.html │ │ │ ├── category.html │ │ │ ├── home.html │ │ │ ├── product-create.html │ │ │ ├── product.html │ │ │ └── products.html │ │ └── translations │ │ │ └── fr │ │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ └── run.py ├── Chapter10 │ ├── app_tests.py │ ├── application.log │ ├── coverage │ │ ├── coverage_html.js │ │ ├── index.html │ │ ├── jquery.hotkeys.js │ │ ├── jquery.isonscreen.js │ │ ├── jquery.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── keybd_closed.png │ │ ├── keybd_open.png │ │ ├── my_app_catalog_models.html │ │ ├── my_app_catalog_views.html │ │ ├── status.dat │ │ └── style.css │ ├── generate_profile.py │ ├── htmlcov │ │ ├── coverage_html.js │ │ ├── index.html │ │ ├── jquery.hotkeys.js │ │ ├── jquery.isonscreen.js │ │ ├── jquery.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── keybd_closed.png │ │ ├── keybd_open.png │ │ ├── my_app___init__.html │ │ ├── my_app_catalog___init__.html │ │ ├── my_app_catalog_models.html │ │ ├── my_app_catalog_views.html │ │ ├── status.dat │ │ └── style.css │ ├── my_app │ │ ├── __init__.py │ │ ├── babel.cfg │ │ ├── catalog │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── messages.pot │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ ├── js │ │ │ │ └── bootstrap.min.js │ │ │ └── uploads │ │ │ │ └── apple-iphone-5-front.jpg │ │ ├── templates │ │ │ ├── 404.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category-create.html │ │ │ ├── category.html │ │ │ ├── home.html │ │ │ ├── product-create.html │ │ │ ├── product.html │ │ │ └── products.html │ │ └── translations │ │ │ └── fr │ │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ └── run.py ├── Chapter11 │ ├── MANIFEST.in │ ├── Procfile │ ├── apache_wsgi.conf │ ├── app.wsgi │ ├── app_tests.py │ ├── application.log │ ├── application.py │ ├── coverage │ │ ├── coverage_html.js │ │ ├── index.html │ │ ├── jquery.hotkeys.js │ │ ├── jquery.isonscreen.js │ │ ├── jquery.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── keybd_closed.png │ │ ├── keybd_open.png │ │ ├── my_app_catalog_models.html │ │ ├── my_app_catalog_views.html │ │ ├── status.dat │ │ └── style.css │ ├── fabfile.py │ ├── generate_profile.py │ ├── htmlcov │ │ ├── coverage_html.js │ │ ├── index.html │ │ ├── jquery.hotkeys.js │ │ ├── jquery.isonscreen.js │ │ ├── jquery.min.js │ │ ├── jquery.tablesorter.min.js │ │ ├── keybd_closed.png │ │ ├── keybd_open.png │ │ ├── my_app___init__.html │ │ ├── my_app_catalog___init__.html │ │ ├── my_app_catalog_models.html │ │ ├── my_app_catalog_views.html │ │ ├── status.dat │ │ └── style.css │ ├── my_app │ │ ├── __init__.py │ │ ├── babel.cfg │ │ ├── catalog │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── messages.pot │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── main.css │ │ │ ├── js │ │ │ │ └── bootstrap.min.js │ │ │ └── uploads │ │ │ │ └── apple-iphone-5-front.jpg │ │ ├── templates │ │ │ ├── 404.html │ │ │ ├── base.html │ │ │ ├── categories.html │ │ │ ├── category-create.html │ │ │ ├── category.html │ │ │ ├── home.html │ │ │ ├── product-create.html │ │ │ ├── product.html │ │ │ └── products.html │ │ └── translations │ │ │ └── fr │ │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ ├── newrelic.ini │ ├── nginx-wsgi.conf │ ├── requirements.txt │ ├── run.py │ ├── setup.py │ ├── tornado_server.py │ └── uwsgi.ini └── Chapter12 │ ├── my_app │ ├── __init__.py │ ├── catalog │ │ ├── __init__.py │ │ ├── models.py │ │ └── views.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── main.css │ │ └── js │ │ │ └── bootstrap.min.js │ └── templates │ │ ├── 404.html │ │ ├── base.html │ │ ├── categories.html │ │ ├── category-create-email-html.html │ │ ├── category-create-email-text.html │ │ ├── category.html │ │ ├── home.html │ │ ├── product-create.html │ │ ├── product.html │ │ └── products.html │ └── run.py ├── Module 3 ├── Chapter01 │ └── chapter_1 │ │ ├── config.py │ │ ├── main.py │ │ └── manage.py ├── Chapter02 │ └── chapter_2 │ │ ├── config.py │ │ ├── main.py │ │ ├── manage.py │ │ └── migrations │ │ ├── README │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ └── 7ded34bc4fb_.py ├── Chapter03 │ └── chapter_3 │ │ ├── config.py │ │ ├── main.py │ │ ├── manage.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── templates │ │ ├── base.html │ │ ├── home.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html ├── Chapter04 │ └── chapter_4 │ │ ├── config.py │ │ ├── main.py │ │ ├── manage.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── templates │ │ └── blog │ │ ├── base.html │ │ ├── home.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html ├── Chapter05 │ └── chapter_5 │ │ ├── manage.py │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── blog.py │ │ └── main.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── templates │ │ └── blog │ │ ├── base.html │ │ ├── home.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html ├── Chapter06 │ └── Chapter 6 │ │ └── chapter_6 │ │ ├── manage.py │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── blog.py │ │ └── main.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── templates │ │ ├── blog │ │ ├── base.html │ │ ├── edit.html │ │ ├── home.html │ │ ├── new.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html │ │ └── main │ │ ├── base.html │ │ ├── login.html │ │ └── register.html ├── Chapter07 │ └── chapter_7 │ │ ├── manage.py │ │ ├── requirements.txt │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── blog.py │ │ └── main.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── formbuilder-min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ └── vendor │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── templates │ │ ├── blog │ │ ├── base.html │ │ ├── edit.html │ │ ├── home.html │ │ ├── new.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html │ │ └── main │ │ ├── base.html │ │ ├── login.html │ │ └── register.html ├── Chapter08 │ └── chapter_8 │ │ ├── manage.py │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── blog.py │ │ ├── main.py │ │ └── rest │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── fields.py │ │ │ ├── parsers.py │ │ │ └── post.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ └── templates │ │ ├── blog │ │ ├── base.html │ │ ├── edit.html │ │ ├── home.html │ │ ├── new.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html │ │ └── main │ │ ├── base.html │ │ ├── login.html │ │ └── register.html ├── Chapter09 │ └── chapter_9 │ │ ├── celery_runner.py │ │ ├── manage.py │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── blog.py │ │ ├── main.py │ │ └── rest │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── fields.py │ │ │ ├── parsers.py │ │ │ └── post.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── tasks.py │ │ └── templates │ │ ├── blog │ │ ├── base.html │ │ ├── edit.html │ │ ├── home.html │ │ ├── new.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html │ │ ├── digest.html │ │ └── main │ │ ├── base.html │ │ ├── login.html │ │ └── register.html ├── Chapter10 │ └── Chapter 10 │ │ ├── celery_runner.py │ │ ├── manage.py │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── blog.py │ │ ├── main.py │ │ └── rest │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── fields.py │ │ │ ├── parsers.py │ │ │ └── post.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.js │ │ ├── tasks.py │ │ └── templates │ │ ├── admin │ │ ├── custom.html │ │ ├── post_edit.html │ │ └── second_page.html │ │ ├── blog │ │ ├── base.html │ │ ├── edit.html │ │ ├── home.html │ │ ├── new.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html │ │ ├── digest.html │ │ └── main │ │ ├── base.html │ │ ├── login.html │ │ └── register.html ├── Chapter11 │ └── Chapter 11 │ │ ├── Flask-YouTube │ │ ├── Flask_YouTube.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── build │ │ │ └── lib │ │ │ │ └── flask_youtube │ │ │ │ └── __init__.py │ │ ├── dist │ │ │ └── Flask_YouTube-0.1-py2.7.egg │ │ ├── flask_youtube │ │ │ ├── __init__.py │ │ │ └── templates │ │ │ │ └── youtube │ │ │ │ └── video.html │ │ └── setup.py │ │ ├── celery_runner.py │ │ ├── manage.py │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── blog.py │ │ ├── main.py │ │ └── rest │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── fields.py │ │ │ ├── parsers.py │ │ │ └── post.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.js │ │ ├── tasks.py │ │ └── templates │ │ ├── admin │ │ ├── custom.html │ │ ├── post_edit.html │ │ └── second_page.html │ │ ├── blog │ │ ├── base.html │ │ ├── edit.html │ │ ├── home.html │ │ ├── new.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html │ │ ├── digest.html │ │ ├── main │ │ ├── base.html │ │ ├── login.html │ │ └── register.html │ │ └── youtube │ │ └── video.html ├── Chapter12 │ └── chapter_12 │ │ ├── .coverage │ │ ├── Flask-GZip │ │ ├── flask_gzip │ │ │ └── __init__.py │ │ └── setup.py │ │ ├── Flask-YouTube │ │ ├── Flask_YouTube.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── build │ │ │ └── lib │ │ │ │ └── flask_youtube │ │ │ │ └── __init__.py │ │ ├── dist │ │ │ └── Flask_YouTube-0.1-py2.7.egg │ │ ├── flask_youtube │ │ │ ├── __init__.py │ │ │ └── templates │ │ │ │ └── youtube │ │ │ │ └── video.html │ │ └── setup.py │ │ ├── celery_runner.py │ │ ├── manage.py │ │ ├── run_test_server.py │ │ ├── tests │ │ ├── __init__.py │ │ ├── test_ui.py │ │ └── test_urls.py │ │ └── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── blog.py │ │ ├── main.py │ │ └── rest │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── fields.py │ │ │ ├── parsers.py │ │ │ └── post.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ ├── .webassets-cache │ │ │ ├── 49d7031c832760f1c8af0e8f1f9a1954 │ │ │ ├── 592e4efb9c5f8cd91720dd6d646679e7 │ │ │ ├── 593c7cdfba4d0c04f3e56780333b67bb │ │ │ ├── 677b6b8fc43f52ebf6307be93396d33b │ │ │ ├── cc4f5a625c710457f3da55054fb81d39 │ │ │ └── efe2845331acfbfa19510a0d780942a5 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── common.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── common.js │ │ │ └── jquery.js │ │ ├── tasks.py │ │ └── templates │ │ ├── admin │ │ ├── custom.html │ │ ├── post_edit.html │ │ └── second_page.html │ │ ├── blog │ │ ├── base.html │ │ ├── edit.html │ │ ├── home.html │ │ ├── new.html │ │ ├── post.html │ │ ├── tag.html │ │ └── user.html │ │ ├── digest.html │ │ └── main │ │ ├── base.html │ │ ├── login.html │ │ └── register.html ├── Chapter13 │ └── Chapter 13 │ │ ├── .gitignore │ │ ├── Flask-GZip │ │ ├── flask_gzip │ │ │ └── __init__.py │ │ └── setup.py │ │ ├── Flask-YouTube │ │ ├── Flask_YouTube.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── build │ │ │ └── lib │ │ │ │ └── flask_youtube │ │ │ │ └── __init__.py │ │ ├── dist │ │ │ └── Flask_YouTube-0.1-py2.7.egg │ │ ├── flask_youtube │ │ │ ├── __init__.py │ │ │ └── templates │ │ │ │ └── youtube │ │ │ │ └── video.html │ │ └── setup.py │ │ ├── Procfile │ │ ├── application.py │ │ ├── celery_runner.py │ │ ├── fabfile.py │ │ ├── gserver.py │ │ ├── manage.py │ │ ├── nginx.conf │ │ ├── requirements.txt │ │ ├── run_test_server.py │ │ ├── runtime.txt │ │ ├── supervisor.conf │ │ ├── tests │ │ ├── __init__.py │ │ ├── test_ui.py │ │ └── test_urls.py │ │ ├── tserver.py │ │ ├── uwsgi.ini │ │ ├── webapp │ │ ├── __init__.py │ │ ├── config.py │ │ ├── controllers │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── blog.py │ │ │ ├── main.py │ │ │ └── rest │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── fields.py │ │ │ │ ├── parsers.py │ │ │ │ └── post.py │ │ ├── extensions.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── static │ │ │ ├── .webassets-cache │ │ │ │ ├── 49d7031c832760f1c8af0e8f1f9a1954 │ │ │ │ ├── 592e4efb9c5f8cd91720dd6d646679e7 │ │ │ │ ├── 593c7cdfba4d0c04f3e56780333b67bb │ │ │ │ ├── 677b6b8fc43f52ebf6307be93396d33b │ │ │ │ ├── cc4f5a625c710457f3da55054fb81d39 │ │ │ │ └── efe2845331acfbfa19510a0d780942a5 │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── common.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── common.js │ │ │ │ └── jquery.js │ │ ├── tasks.py │ │ └── templates │ │ │ ├── admin │ │ │ ├── custom.html │ │ │ ├── post_edit.html │ │ │ └── second_page.html │ │ │ ├── blog │ │ │ ├── base.html │ │ │ ├── edit.html │ │ │ ├── home.html │ │ │ ├── new.html │ │ │ ├── post.html │ │ │ ├── tag.html │ │ │ └── user.html │ │ │ ├── digest.html │ │ │ └── main │ │ │ ├── base.html │ │ │ ├── login.html │ │ │ └── register.html │ │ └── wsgi.py └── Software Hardware List.docx ├── Readme.md └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/LICENSE -------------------------------------------------------------------------------- /Module 1/Chapter01/hello.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter01/hello.conf -------------------------------------------------------------------------------- /Module 1/Chapter01/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter01/hello.py -------------------------------------------------------------------------------- /Module 1/Chapter01/hello.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter01/hello.wsgi -------------------------------------------------------------------------------- /Module 1/Chapter02/headlines.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter02/headlines.conf -------------------------------------------------------------------------------- /Module 1/Chapter02/headlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter02/headlines.py -------------------------------------------------------------------------------- /Module 1/Chapter02/headlines.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter02/headlines.wsgi -------------------------------------------------------------------------------- /Module 1/Chapter03/headlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter03/headlines.py -------------------------------------------------------------------------------- /Module 1/Chapter03/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter03/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter04/headlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter04/headlines.py -------------------------------------------------------------------------------- /Module 1/Chapter04/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter04/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter05/headlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter05/headlines.py -------------------------------------------------------------------------------- /Module 1/Chapter05/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter05/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter06/crimemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter06/crimemap.py -------------------------------------------------------------------------------- /Module 1/Chapter06/crimemap.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter06/crimemap.wsgi -------------------------------------------------------------------------------- /Module 1/Chapter06/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter06/db_setup.py -------------------------------------------------------------------------------- /Module 1/Chapter06/dbconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter06/dbconfig.py -------------------------------------------------------------------------------- /Module 1/Chapter06/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter06/dbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter06/misc/crimemap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter06/misc/crimemap.conf -------------------------------------------------------------------------------- /Module 1/Chapter06/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter06/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter07/crimemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/crimemap.py -------------------------------------------------------------------------------- /Module 1/Chapter07/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/db_setup.py -------------------------------------------------------------------------------- /Module 1/Chapter07/dbconfig.py: -------------------------------------------------------------------------------- 1 | test = True -------------------------------------------------------------------------------- /Module 1/Chapter07/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/dbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter07/misc/crimemap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/misc/crimemap.conf -------------------------------------------------------------------------------- /Module 1/Chapter07/misc/crimemap.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/misc/crimemap.wsgi -------------------------------------------------------------------------------- /Module 1/Chapter07/mockdbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/mockdbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter07/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/static/css/style.css -------------------------------------------------------------------------------- /Module 1/Chapter07/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter07/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter08/crimemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/crimemap.py -------------------------------------------------------------------------------- /Module 1/Chapter08/db_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/db_setup.py -------------------------------------------------------------------------------- /Module 1/Chapter08/dbconfig.py: -------------------------------------------------------------------------------- 1 | test = True -------------------------------------------------------------------------------- /Module 1/Chapter08/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/dbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter08/misc/crimemap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/misc/crimemap.conf -------------------------------------------------------------------------------- /Module 1/Chapter08/misc/crimemap.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/misc/crimemap.wsgi -------------------------------------------------------------------------------- /Module 1/Chapter08/mockdbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/mockdbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter08/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/static/css/style.css -------------------------------------------------------------------------------- /Module 1/Chapter08/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter08/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter09/config.py: -------------------------------------------------------------------------------- 1 | test = True 2 | -------------------------------------------------------------------------------- /Module 1/Chapter09/mockdbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/mockdbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter09/passwordhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/passwordhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter09/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 1/Chapter09/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Module 1/Chapter09/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Module 1/Chapter09/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 1/Chapter09/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 1/Chapter09/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Module 1/Chapter09/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 1/Chapter09/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 1/Chapter09/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/static/js/npm.js -------------------------------------------------------------------------------- /Module 1/Chapter09/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter09/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/user.py -------------------------------------------------------------------------------- /Module 1/Chapter09/waitercaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/waitercaller.py -------------------------------------------------------------------------------- /Module 1/Chapter09/waitercaller.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter09/waitercaller.wsgi -------------------------------------------------------------------------------- /Module 1/Chapter10/bitlyhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/bitlyhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter10/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/config.py -------------------------------------------------------------------------------- /Module 1/Chapter10/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/forms.py -------------------------------------------------------------------------------- /Module 1/Chapter10/mockbitlyhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/mockbitlyhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter10/mockdbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/mockdbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter10/passwordhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/passwordhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter10/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 1/Chapter10/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Module 1/Chapter10/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Module 1/Chapter10/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 1/Chapter10/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 1/Chapter10/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Module 1/Chapter10/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 1/Chapter10/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 1/Chapter10/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/static/js/npm.js -------------------------------------------------------------------------------- /Module 1/Chapter10/templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/templates/account.html -------------------------------------------------------------------------------- /Module 1/Chapter10/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/templates/base.html -------------------------------------------------------------------------------- /Module 1/Chapter10/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/templates/dashboard.html -------------------------------------------------------------------------------- /Module 1/Chapter10/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter10/templates/home_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/templates/home_1.html -------------------------------------------------------------------------------- /Module 1/Chapter10/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/user.py -------------------------------------------------------------------------------- /Module 1/Chapter10/waitercaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/waitercaller.py -------------------------------------------------------------------------------- /Module 1/Chapter10/waitercaller.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter10/waitercaller.wsgi -------------------------------------------------------------------------------- /Module 1/Chapter11/.gitignore: -------------------------------------------------------------------------------- 1 | config.py 2 | *.pyc 3 | 4 | -------------------------------------------------------------------------------- /Module 1/Chapter11/bitlyhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/bitlyhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter11/create_mongo_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/create_mongo_indices.py -------------------------------------------------------------------------------- /Module 1/Chapter11/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/dbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter11/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/forms.py -------------------------------------------------------------------------------- /Module 1/Chapter11/mockbitlyhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/mockbitlyhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter11/mockdbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/mockdbhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter11/passwordhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/passwordhelper.py -------------------------------------------------------------------------------- /Module 1/Chapter11/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 1/Chapter11/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Module 1/Chapter11/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Module 1/Chapter11/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 1/Chapter11/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 1/Chapter11/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 1/Chapter11/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/favicon.ico -------------------------------------------------------------------------------- /Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Module 1/Chapter11/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 1/Chapter11/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 1/Chapter11/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/static/js/npm.js -------------------------------------------------------------------------------- /Module 1/Chapter11/templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/templates/account.html -------------------------------------------------------------------------------- /Module 1/Chapter11/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/templates/base.html -------------------------------------------------------------------------------- /Module 1/Chapter11/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/templates/dashboard.html -------------------------------------------------------------------------------- /Module 1/Chapter11/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/templates/home.html -------------------------------------------------------------------------------- /Module 1/Chapter11/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/user.py -------------------------------------------------------------------------------- /Module 1/Chapter11/waitercaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/waitercaller.py -------------------------------------------------------------------------------- /Module 1/Chapter11/waitercaller.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Chapter11/waitercaller.wsgi -------------------------------------------------------------------------------- /Module 1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/ReadMe.txt -------------------------------------------------------------------------------- /Module 1/Software Hardware List.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 1/Software Hardware List.docx -------------------------------------------------------------------------------- /Module 2/Chapter01/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter01/app.py -------------------------------------------------------------------------------- /Module 2/Chapter01/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter01/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter01/my_app/hello/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter01/my_app/hello/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter01/my_app/hello/models.py -------------------------------------------------------------------------------- /Module 2/Chapter01/my_app/hello/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter01/my_app/hello/views.py -------------------------------------------------------------------------------- /Module 2/Chapter01/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter01/run.py -------------------------------------------------------------------------------- /Module 2/Chapter01/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter01/setup.py -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/product/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/product/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/product/models.py -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/product/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/product/views.py -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter02/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter02/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/run.py -------------------------------------------------------------------------------- /Module 2/Chapter02/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter02/setup.py -------------------------------------------------------------------------------- /Module 2/Chapter03/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Module 2/Chapter03/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/migrations/alembic.ini -------------------------------------------------------------------------------- /Module 2/Chapter03/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/migrations/env.py -------------------------------------------------------------------------------- /Module 2/Chapter03/migrations/env.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/migrations/env.pyc -------------------------------------------------------------------------------- /Module 2/Chapter03/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/migrations/script.py.mako -------------------------------------------------------------------------------- /Module 2/Chapter03/migrations/versions/538264df91d2_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/migrations/versions/538264df91d2_.py -------------------------------------------------------------------------------- /Module 2/Chapter03/migrations/versions/538264df91d2_.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/migrations/versions/538264df91d2_.pyc -------------------------------------------------------------------------------- /Module 2/Chapter03/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter03/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter03/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter03/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter03/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter03/run.py -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/404.html -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/categories.html -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/category.html -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/product-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/product-create.html -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter04/my_app/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/my_app/templates/products.html -------------------------------------------------------------------------------- /Module 2/Chapter04/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter04/run.py -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/static/uploads/apple-iphone-5-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/static/uploads/apple-iphone-5-front.jpg -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/404.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/categories.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/category-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/category-create.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/category.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/product-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/product-create.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter05/my_app/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/my_app/templates/products.html -------------------------------------------------------------------------------- /Module 2/Chapter05/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter05/run.py -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/auth/models.py -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/auth/views.py -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/templates/login.html -------------------------------------------------------------------------------- /Module 2/Chapter06/my_app/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/my_app/templates/register.html -------------------------------------------------------------------------------- /Module 2/Chapter06/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter06/run.py -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/404.html -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/categories.html -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/category.html -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/product-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/product-create.html -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter07/my_app/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/my_app/templates/products.html -------------------------------------------------------------------------------- /Module 2/Chapter07/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter07/run.py -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/auth/models.py -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/auth/views.py -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/admin-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/admin-home.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/edit.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/login.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/register.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/some-template.html: -------------------------------------------------------------------------------- 1 | This is a template just for demonstration of Flask Admin Views. 2 | -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/user-create-admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/user-create-admin.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/user-update-admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/user-update-admin.html -------------------------------------------------------------------------------- /Module 2/Chapter08/my_app/templates/users-list-admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/my_app/templates/users-list-admin.html -------------------------------------------------------------------------------- /Module 2/Chapter08/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter08/run.py -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/babel.cfg -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/messages.pot -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/static/uploads/apple-iphone-5-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/static/uploads/apple-iphone-5-front.jpg -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/404.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/categories.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/category-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/category-create.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/category.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/product-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/product-create.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/templates/products.html -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/translations/fr/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/translations/fr/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /Module 2/Chapter09/my_app/translations/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/my_app/translations/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /Module 2/Chapter09/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter09/run.py -------------------------------------------------------------------------------- /Module 2/Chapter10/app_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/app_tests.py -------------------------------------------------------------------------------- /Module 2/Chapter10/application.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/application.log -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/coverage_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/coverage_html.js -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/index.html -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/jquery.hotkeys.js -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/jquery.isonscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/jquery.isonscreen.js -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/jquery.min.js -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/keybd_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/keybd_closed.png -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/keybd_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/keybd_open.png -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/my_app_catalog_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/my_app_catalog_models.html -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/my_app_catalog_views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/my_app_catalog_views.html -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/status.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/status.dat -------------------------------------------------------------------------------- /Module 2/Chapter10/coverage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/coverage/style.css -------------------------------------------------------------------------------- /Module 2/Chapter10/generate_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/generate_profile.py -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/coverage_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/coverage_html.js -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/index.html -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/jquery.hotkeys.js -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/jquery.isonscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/jquery.isonscreen.js -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/jquery.min.js -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/keybd_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/keybd_closed.png -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/keybd_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/keybd_open.png -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/my_app___init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/my_app___init__.html -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/my_app_catalog___init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/my_app_catalog___init__.html -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/my_app_catalog_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/my_app_catalog_models.html -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/my_app_catalog_views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/my_app_catalog_views.html -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/status.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/status.dat -------------------------------------------------------------------------------- /Module 2/Chapter10/htmlcov/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/htmlcov/style.css -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/babel.cfg -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/messages.pot -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/static/uploads/apple-iphone-5-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/static/uploads/apple-iphone-5-front.jpg -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/404.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/categories.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/category-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/category-create.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/category.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/product-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/product-create.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/templates/products.html -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/translations/fr/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/translations/fr/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /Module 2/Chapter10/my_app/translations/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/my_app/translations/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /Module 2/Chapter10/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter10/run.py -------------------------------------------------------------------------------- /Module 2/Chapter11/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/MANIFEST.in -------------------------------------------------------------------------------- /Module 2/Chapter11/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/Procfile -------------------------------------------------------------------------------- /Module 2/Chapter11/apache_wsgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/apache_wsgi.conf -------------------------------------------------------------------------------- /Module 2/Chapter11/app.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/app.wsgi -------------------------------------------------------------------------------- /Module 2/Chapter11/app_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/app_tests.py -------------------------------------------------------------------------------- /Module 2/Chapter11/application.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/application.log -------------------------------------------------------------------------------- /Module 2/Chapter11/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/application.py -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/coverage_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/coverage_html.js -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/index.html -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/jquery.hotkeys.js -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/jquery.isonscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/jquery.isonscreen.js -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/jquery.min.js -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/keybd_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/keybd_closed.png -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/keybd_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/keybd_open.png -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/my_app_catalog_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/my_app_catalog_models.html -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/my_app_catalog_views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/my_app_catalog_views.html -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/status.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/status.dat -------------------------------------------------------------------------------- /Module 2/Chapter11/coverage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/coverage/style.css -------------------------------------------------------------------------------- /Module 2/Chapter11/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/fabfile.py -------------------------------------------------------------------------------- /Module 2/Chapter11/generate_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/generate_profile.py -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/coverage_html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/coverage_html.js -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/index.html -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/jquery.hotkeys.js -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/jquery.isonscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/jquery.isonscreen.js -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/jquery.min.js -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/keybd_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/keybd_closed.png -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/keybd_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/keybd_open.png -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/my_app___init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/my_app___init__.html -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/my_app_catalog___init__.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/my_app_catalog___init__.html -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/my_app_catalog_models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/my_app_catalog_models.html -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/my_app_catalog_views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/my_app_catalog_views.html -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/status.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/status.dat -------------------------------------------------------------------------------- /Module 2/Chapter11/htmlcov/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/htmlcov/style.css -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/babel.cfg -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/messages.pot -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/static/uploads/apple-iphone-5-front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/static/uploads/apple-iphone-5-front.jpg -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/404.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/categories.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/category-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/category-create.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/category.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/product-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/product-create.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/templates/products.html -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/translations/fr/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/translations/fr/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /Module 2/Chapter11/my_app/translations/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/my_app/translations/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /Module 2/Chapter11/newrelic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/newrelic.ini -------------------------------------------------------------------------------- /Module 2/Chapter11/nginx-wsgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/nginx-wsgi.conf -------------------------------------------------------------------------------- /Module 2/Chapter11/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/requirements.txt -------------------------------------------------------------------------------- /Module 2/Chapter11/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/run.py -------------------------------------------------------------------------------- /Module 2/Chapter11/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/setup.py -------------------------------------------------------------------------------- /Module 2/Chapter11/tornado_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/tornado_server.py -------------------------------------------------------------------------------- /Module 2/Chapter11/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter11/uwsgi.ini -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/__init__.py -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/catalog/models.py -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/catalog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/catalog/views.py -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/static/css/main.css -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/404.html -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/base.html -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/categories.html -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/category.html -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/home.html -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/product-create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/product-create.html -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/product.html -------------------------------------------------------------------------------- /Module 2/Chapter12/my_app/templates/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/my_app/templates/products.html -------------------------------------------------------------------------------- /Module 2/Chapter12/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 2/Chapter12/run.py -------------------------------------------------------------------------------- /Module 3/Chapter01/chapter_1/config.py: -------------------------------------------------------------------------------- 1 | class DevConfig(object): 2 | DEBUG = True 3 | -------------------------------------------------------------------------------- /Module 3/Chapter01/chapter_1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter01/chapter_1/main.py -------------------------------------------------------------------------------- /Module 3/Chapter01/chapter_1/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter01/chapter_1/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter02/chapter_2/config.py -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter02/chapter_2/main.py -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter02/chapter_2/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter02/chapter_2/migrations/alembic.ini -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter02/chapter_2/migrations/env.py -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter02/chapter_2/migrations/script.py.mako -------------------------------------------------------------------------------- /Module 3/Chapter02/chapter_2/migrations/versions/7ded34bc4fb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter02/chapter_2/migrations/versions/7ded34bc4fb_.py -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/config.py -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/main.py -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/static/js/npm.js -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/templates/base.html -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/templates/home.html -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/templates/post.html -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/templates/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter03/chapter_3/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter03/chapter_3/templates/user.html -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/config.py -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/main.py -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/static/js/npm.js -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter04/chapter_4/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter04/chapter_4/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter05/chapter_5/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter05/chapter_5/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter06/Chapter 6/chapter_6/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter06/Chapter 6/chapter_6/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/requirements.txt -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/static/css/formbuilder-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/static/css/formbuilder-min.css -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/static/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/static/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Module 3/Chapter07/chapter_7/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter07/chapter_7/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Module 3/Chapter08/chapter_8/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter08/chapter_8/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/celery_runner.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/tasks.py -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/digest.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Module 3/Chapter09/chapter_9/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter09/chapter_9/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/celery_runner.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/tasks.py -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/digest.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Module 3/Chapter10/Chapter 10/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter10/Chapter 10/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_youtube 2 | -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/Flask-YouTube/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/Flask-YouTube/setup.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/celery_runner.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/tasks.py -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/digest.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Module 3/Chapter11/Chapter 11/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter11/Chapter 11/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/.coverage -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/Flask-GZip/flask_gzip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/Flask-GZip/flask_gzip/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/Flask-GZip/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/Flask-GZip/setup.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_youtube 2 | -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/Flask-YouTube/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/Flask-YouTube/setup.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/celery_runner.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/run_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/run_test_server.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/tests/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/tests/test_ui.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/tests/test_urls.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/.webassets-cache/49d7031c832760f1c8af0e8f1f9a1954: -------------------------------------------------------------------------------- 1 | S'331a10ae21d04e9646dd1280cfd734b1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/.webassets-cache/592e4efb9c5f8cd91720dd6d646679e7: -------------------------------------------------------------------------------- 1 | S'1cbf25481f487566bb2ac19ee9816a46' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/.webassets-cache/677b6b8fc43f52ebf6307be93396d33b: -------------------------------------------------------------------------------- 1 | S'e5dc859d' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/.webassets-cache/efe2845331acfbfa19510a0d780942a5: -------------------------------------------------------------------------------- 1 | S'549042f1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/static/css/common.css -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/static/js/common.js -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/tasks.py -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/digest.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Module 3/Chapter12/chapter_12/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter12/chapter_12/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/.gitignore -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/Flask-GZip/flask_gzip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/Flask-GZip/flask_gzip/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/Flask-GZip/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/Flask-GZip/setup.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_youtube 2 | -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/Flask-YouTube/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/Flask-YouTube/setup.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/Procfile -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/application.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/celery_runner.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/fabfile.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/gserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/gserver.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/manage.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/nginx.conf -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/requirements.txt -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/run_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/run_test_server.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.10 -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/supervisor.conf -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/tests/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/tests/test_ui.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/tests/test_urls.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/tserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/tserver.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/uwsgi.ini -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/__init__.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/config.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/controllers/main.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/extensions.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/forms.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/models.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/.webassets-cache/49d7031c832760f1c8af0e8f1f9a1954: -------------------------------------------------------------------------------- 1 | S'331a10ae21d04e9646dd1280cfd734b1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/.webassets-cache/592e4efb9c5f8cd91720dd6d646679e7: -------------------------------------------------------------------------------- 1 | S'1cbf25481f487566bb2ac19ee9816a46' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/.webassets-cache/677b6b8fc43f52ebf6307be93396d33b: -------------------------------------------------------------------------------- 1 | S'e5dc859d' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/.webassets-cache/efe2845331acfbfa19510a0d780942a5: -------------------------------------------------------------------------------- 1 | S'549042f1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/static/css/common.css -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/static/js/common.js -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/tasks.py -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/digest.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Module 3/Chapter13/Chapter 13/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Chapter13/Chapter 13/wsgi.py -------------------------------------------------------------------------------- /Module 3/Software Hardware List.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/Module 3/Software Hardware List.docx -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flask-Building-Python-Web-Services/HEAD/readme.md --------------------------------------------------------------------------------