├── .gitattributes ├── .gitignore ├── Chapter 10_Code └── 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 ├── Chapter 11_Code └── 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 ├── Chapter 12_Code └── 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 ├── Chapter 13_Code └── 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 ├── Chapter 1_Code └── chapter_1 │ ├── config.py │ ├── main.py │ └── manage.py ├── Chapter 2_Code └── chapter_2 │ ├── config.py │ ├── main.py │ ├── manage.py │ └── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ └── 7ded34bc4fb_.py ├── Chapter 3_Code └── 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 ├── Chapter 4_Code └── 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 ├── Chapter 5_Code └── 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 ├── Chapter 6_Code └── 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 ├── Chapter 7_Code └── 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 ├── Chapter 8_Code └── 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 ├── Chapter 9_Code └── 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 └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/celery_runner.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/manage.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/config.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/models.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/tasks.py -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/admin/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/admin/custom.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/admin/post_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/admin/post_edit.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/admin/second_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/admin/second_page.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/digest.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 10_Code/Chapter 10/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 10_Code/Chapter 10/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/PKG-INFO -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/Flask_YouTube.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_youtube 2 | -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/build/lib/flask_youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/Flask-YouTube/build/lib/flask_youtube/__init__.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/dist/Flask_YouTube-0.1-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/Flask-YouTube/dist/Flask_YouTube-0.1-py2.7.egg -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/flask_youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/Flask-YouTube/flask_youtube/__init__.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/flask_youtube/templates/youtube/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/Flask-YouTube/flask_youtube/templates/youtube/video.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/Flask-YouTube/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/Flask-YouTube/setup.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/celery_runner.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/manage.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/config.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/models.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/tasks.py -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/admin/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/admin/custom.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/admin/post_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/admin/post_edit.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/admin/second_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/admin/second_page.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/digest.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Chapter 11_Code/Chapter 11/webapp/templates/youtube/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 11_Code/Chapter 11/webapp/templates/youtube/video.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/.coverage -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-GZip/flask_gzip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-GZip/flask_gzip/__init__.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-GZip/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-GZip/setup.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/PKG-INFO -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/Flask_YouTube.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_youtube 2 | -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/build/lib/flask_youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-YouTube/build/lib/flask_youtube/__init__.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/dist/Flask_YouTube-0.1-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-YouTube/dist/Flask_YouTube-0.1-py2.7.egg -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/flask_youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-YouTube/flask_youtube/__init__.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/flask_youtube/templates/youtube/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-YouTube/flask_youtube/templates/youtube/video.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/Flask-YouTube/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/Flask-YouTube/setup.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/celery_runner.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/manage.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/run_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/run_test_server.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/tests/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/tests/test_ui.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/tests/test_urls.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/config.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/models.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/49d7031c832760f1c8af0e8f1f9a1954: -------------------------------------------------------------------------------- 1 | S'331a10ae21d04e9646dd1280cfd734b1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/592e4efb9c5f8cd91720dd6d646679e7: -------------------------------------------------------------------------------- 1 | S'1cbf25481f487566bb2ac19ee9816a46' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/593c7cdfba4d0c04f3e56780333b67bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/593c7cdfba4d0c04f3e56780333b67bb -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/677b6b8fc43f52ebf6307be93396d33b: -------------------------------------------------------------------------------- 1 | S'e5dc859d' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/cc4f5a625c710457f3da55054fb81d39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/cc4f5a625c710457f3da55054fb81d39 -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/.webassets-cache/efe2845331acfbfa19510a0d780942a5: -------------------------------------------------------------------------------- 1 | S'549042f1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/css/common.css -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/js/common.js -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/tasks.py -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/admin/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/admin/custom.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/admin/post_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/admin/post_edit.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/admin/second_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/admin/second_page.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/digest.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 12_Code/chapter_12/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 12_Code/chapter_12/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/.gitignore -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-GZip/flask_gzip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-GZip/flask_gzip/__init__.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-GZip/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-GZip/setup.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/PKG-INFO -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/Flask_YouTube.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_youtube 2 | -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/build/lib/flask_youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-YouTube/build/lib/flask_youtube/__init__.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/dist/Flask_YouTube-0.1-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-YouTube/dist/Flask_YouTube-0.1-py2.7.egg -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/flask_youtube/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-YouTube/flask_youtube/__init__.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/flask_youtube/templates/youtube/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-YouTube/flask_youtube/templates/youtube/video.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Flask-YouTube/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Flask-YouTube/setup.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/Procfile -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/application.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/celery_runner.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/fabfile.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/gserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/gserver.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/manage.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/nginx.conf -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/requirements.txt -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/run_test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/run_test_server.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.10 -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/supervisor.conf -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/tests/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/tests/test_ui.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/tests/test_urls.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/tserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/tserver.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/uwsgi.ini -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/config.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/controllers/admin.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/models.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/49d7031c832760f1c8af0e8f1f9a1954: -------------------------------------------------------------------------------- 1 | S'331a10ae21d04e9646dd1280cfd734b1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/592e4efb9c5f8cd91720dd6d646679e7: -------------------------------------------------------------------------------- 1 | S'1cbf25481f487566bb2ac19ee9816a46' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/593c7cdfba4d0c04f3e56780333b67bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/593c7cdfba4d0c04f3e56780333b67bb -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/677b6b8fc43f52ebf6307be93396d33b: -------------------------------------------------------------------------------- 1 | S'e5dc859d' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/cc4f5a625c710457f3da55054fb81d39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/cc4f5a625c710457f3da55054fb81d39 -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/.webassets-cache/efe2845331acfbfa19510a0d780942a5: -------------------------------------------------------------------------------- 1 | S'549042f1' 2 | p1 3 | . -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/css/common.css -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/js/common.js -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/static/js/jquery.js -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/tasks.py -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/admin/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/admin/custom.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/admin/post_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/admin/post_edit.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/admin/second_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/admin/second_page.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/digest.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Chapter 13_Code/Chapter 13/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 13_Code/Chapter 13/wsgi.py -------------------------------------------------------------------------------- /Chapter 1_Code/chapter_1/config.py: -------------------------------------------------------------------------------- 1 | class DevConfig(object): 2 | DEBUG = True 3 | -------------------------------------------------------------------------------- /Chapter 1_Code/chapter_1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 1_Code/chapter_1/main.py -------------------------------------------------------------------------------- /Chapter 1_Code/chapter_1/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 1_Code/chapter_1/manage.py -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 2_Code/chapter_2/config.py -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 2_Code/chapter_2/main.py -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 2_Code/chapter_2/manage.py -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 2_Code/chapter_2/migrations/alembic.ini -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 2_Code/chapter_2/migrations/env.py -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 2_Code/chapter_2/migrations/script.py.mako -------------------------------------------------------------------------------- /Chapter 2_Code/chapter_2/migrations/versions/7ded34bc4fb_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 2_Code/chapter_2/migrations/versions/7ded34bc4fb_.py -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/config.py -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/main.py -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/manage.py -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/static/js/npm.js -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/templates/base.html -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/templates/home.html -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/templates/post.html -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/templates/tag.html -------------------------------------------------------------------------------- /Chapter 3_Code/chapter_3/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 3_Code/chapter_3/templates/user.html -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/config.py -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/main.py -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/manage.py -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/static/js/npm.js -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 4_Code/chapter_4/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 4_Code/chapter_4/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/manage.py -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/config.py -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/models.py -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 5_Code/chapter_5/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 5_Code/chapter_5/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/manage.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/config.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/models.py -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 6_Code/Chapter 6/chapter_6/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/manage.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/requirements.txt -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/config.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/models.py -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/css/formbuilder-min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/css/formbuilder-min.css -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/static/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/static/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 7_Code/chapter_7/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 7_Code/chapter_7/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/manage.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/config.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/models.py -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 8_Code/chapter_8/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 8_Code/chapter_8/webapp/templates/main/register.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/celery_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/celery_runner.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/manage.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/__init__.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/config.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/controllers/blog.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/controllers/main.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/rest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/rest/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/controllers/rest/auth.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/rest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/controllers/rest/fields.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/rest/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/controllers/rest/parsers.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/controllers/rest/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/controllers/rest/post.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/extensions.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/forms.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/models.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/css/bootstrap.css -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/js/bootstrap.js -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/static/js/npm.js -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/tasks.py -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/blog/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/blog/base.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/blog/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/blog/edit.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/blog/home.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/blog/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/blog/new.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/blog/post.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/blog/tag.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/blog/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/blog/user.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/digest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/digest.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/main/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/main/base.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/main/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/main/login.html -------------------------------------------------------------------------------- /Chapter 9_Code/chapter_9/webapp/templates/main/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/Chapter 9_Code/chapter_9/webapp/templates/main/register.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Flask/HEAD/README.md --------------------------------------------------------------------------------