<metaname="description" content="Full Stack Python shows how an entire Python web application is built and deployed. Each section of the guide explains a different key concept, from the server through the Python WSGI web framework to the front end JavaScript.">
<p><ahref="http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xvi-debugging-testing-and-profiling">Part 16: Debugging, Testing and Profiling</a></p>
</li>
<li>
<p><ahref="http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xvii-deployment-on-linux-even-on-the-raspberry-pi">Part 17: Deployment on Linux</a></p>
</li>
<li>
<p><ahref="http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-xviii-deployment-on-the-heroku-cloud">Part 18: Deployment on the Heroku Cloud</a></p>
</li>
</ul>
<p>Yes, there are many parts to the series. However, each post is focused on
a single topic to contain the complexity. The whole series is well
worth an in-depth read-through. The
<ahref="https://twitter.com/miguelgrinberg">author</a> is also writing the
<ahref="http://shop.oreilly.com/product/0636920031116.do">O'Reilly Flask Web Development</a>
book so consider picking that up as well.</p>
<p>The <ahref="http://flask.pocoo.org/extensions/">Flask Extensions Registry</a> is a
curated list of the best packages that extend Flask. It's the first location
to look through when you're wondering how to do something that's not in the
core framework.</p>
<p>Great post by Jeff Knupp on <ahref="http://www.jeffknupp.com/blog/2014/01/29/productionizing-a-flask-application/">Productionizing a Flask App</a></p>
<p>The Plank & Whittle blog has two posts, one on <ahref="http://www.plankandwhittle.com/packaging-a-flask-web-app/">Packaging a Flask web app</a>
and another on <ahref="http://www.plankandwhittle.com/packaging-a-flask-app-in-a-debian-package/">Packaging a Flask app in a Debian package</a>
once you've built an app and want to deploy it.</p>
web framework with no external dependencies except for the standard library
included with Python.</p>
<h3>Bottle resources</h3>
<p>Digital Ocean provides an extensive <ahref="https://www.digitalocean.com/community/articles/how-to-use-the-bottle-micro-framework-to-develop-python-web-apps">introductory post on Bottle</a>.</p>
<p>This post provides a short
<ahref="http://www.giantflyingsaucer.com/blog/?p=3598">tutorial on getting started with Bottle</a>.</p>
<p>Here's a short code snippet for <ahref="http://myadventuresincoding.wordpress.com/2011/01/02/creating-a-rest-api-in-python-using-bottle-and-mongodb/">creating a REST API with Bottle and MongoDB</a>.</p>