Flask Vs. Django
Flask and Django are two of the most popular web frameworks for Python (although there are many more ). In this post, I'll discuss some of the points you should consider when you're choosing between Flask and Django. We'll also walk through a "Hello, World" app in each of them to get more of a hands-on feel for how they work. (Note: I'm a long-time Flask user and author of the book Flask by Example , so I'm personally a bit biased towards Flask. I'll keep this overview as objective as possible though). Wait, why do I need a web framework and what is it anyway. Quick Comparison Hello, World! Final Remarks Wait, why do I need a web framework and what is it anyway. When you first started developing Python applications, you probably developed so-called "command line applications". The user has to run these scripts in a shell or command prompt and pass input as arguments or through standard input. Several years ago, the natural progression fro...