According to the 2019 Stack Overflow developer survey, Python has risen in the ranks of programming languages. This popularity is not only due to applications in artificial intelligence or big data.Python can be used to build server-side web applications.
Both Django and Flask are hugely popular as Python Web frameworks. In this article, we’ll compare two widely used Python Web Frameworks.
(Note: I’m a big fan of another Python Web Framework called Masonite, so I’ll keep this comparison as objective as possible though).
Both frameworks can be installed with the package-management system pip
.
Flask installation is as simple as below:
pip install Flask touch app.py
BashCopy
Put the source-code below into app.py
:
from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello World!"
PythonCopy
You can run your app with this command:
FLASK_APP=app.py flask run
That’s it! Your Flask application is available on URL http://localhost:5000/.
You need to scaffold a bunch of files to start.
pip install Django django-admin startproject django_project python manage.py runserver
BashCopy
Now that the server’s running, visit http://127.0.0.1:8000/ with your Web browser. You’ll see a “Congratulations!” page.
Django provides a conventional project structure with several applications. But you should create your own project’s structure when using Flask.
The config
attribute of the Flask object is as a config object. For example:
# app.py app = Flask(__name__) app.config['TESTING'] = True
PythonCopy
A Django settings file contains all the configuration of your Django installation. Here are a couple of example settings:
# settings.py TESTING = True
PythonCopy
Flask provides a route()
decorator to tell Flask what URL should trigger a function:
# app.py @app.route('/') def hello_world(): return 'Hello, World!'
PythonCopy
Django lets you design URLs however you want:
# urls.py from django.urls import path from . import views urlpatterns = [ path('/', views.home), ]
PythonCopy
Django ships with a template engine called Django Template Language
and Flask ships with Jinja
. Both template engines implement two main features: Template inheritance, Blocks or sections, if/else, for-loops.
Django web framework includes a default ORM that can be used to interact with the application database.
User.objects.all()
Flask does not come with ORM capabilities by default. You need to manually add it if you want. Many Flask Developers prefer SQLAlchemy for database access.
User.query.all()
Django provides a functional admin module automatically based on your project models. The developers even have the option to customize the admin interface to meet specific business requirements.
Several popular websites use Django: Mozilla, Instagram, The Washington Times and so on. Flask is used by Pinterest or LinkedIn.
With the JavaScript’s frameworks popularity, REST APIs can be used to perform requests and receive responses via HTTP.
There are many Flask extensions to help you build RESTful services: Flask-RESTful for example. But you can use what Flask provides itself:
# app.py from flask import Flask, jsonify app = Flask(__name__) todos = [ { 'name': 'Learn Flask' }, { 'name': 'Learn SQLAlchemy' } ] @app.route('/todos', methods=['GET']) def get_todos(): return jsonify({'todos': todos})
PythonCopy
Django Rest Framework (or simply DRF) is a powerful module for building web APIs using Django. It’s very easy to build model-backed APIs that have authentication policies and are browsable.
There’s no clear winner between Django and Flask, as everything depends on your final goal. Flask and Django both have their strengths and weaknesses. Django is very complete, with regard to ORM, admin interface etc. It’s well documented. But Django has a steep learning curve. Flask might be a better choice because you can learn it fast.
#python #django #flask #web-development