Skip to main content

Flask Hello World

Introduction to Flask

Flask is a lightweight web framework written in Python. It is designed to be simple and easy to use, yet flexible enough to handle complex web applications. Flask follows the principle of "micro" frameworks, which means it provides only the essential features needed to build a web application, allowing developers to add additional functionality as needed.

Flask is built on top of the Werkzeug WSGI toolkit and the Jinja2 template engine. It provides a simple and elegant way to handle HTTP requests, route URLs to functions, and render templates.

History of Flask

Flask was created by Armin Ronacher in 2010 as an April Fool's joke. However, due to its simplicity and popularity, it quickly gained a large following and became a popular choice for building web applications in Python. Flask has since grown into a mature and stable web framework and is widely used by developers around the world.

Features of Flask

Flask offers a range of features that make it a popular choice for developing web applications:

  1. Routing: Flask allows you to define URL routes and map them to functions, making it easy to handle different HTTP requests. You can define routes using decorators or by using the add_url_rule() method.
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
return 'Hello, World!'

if __name__ == '__main__':
app.run()
  1. Template Rendering: Flask integrates with the Jinja2 template engine, allowing you to easily render dynamic HTML templates. You can pass variables to templates and use template inheritance to create reusable layouts.
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def index():
name = 'John Doe'
return render_template('index.html', name=name)

if __name__ == '__main__':
app.run()
  1. HTTP Request Handling: Flask provides a request context that allows you to access request-specific information, such as form data, headers, and cookies. You can handle different HTTP methods (GET, POST, etc.) using decorators or by checking the request.method attribute.
from flask import Flask, request

app = Flask(__name__)

@app.route('/login', methods=['GET', 'POST'])
def login():
if request.method == 'POST':
username = request.form['username']
password = request.form['password']
# Validate username and password
# ...
return 'Login successful'
else:
return render_template('login.html')

if __name__ == '__main__':
app.run()
  1. Session Management: Flask provides a simple way to manage user sessions using the session object. You can store and retrieve data from the session, allowing you to maintain user state across multiple requests.
from flask import Flask, session, redirect, url_for

app = Flask(__name__)
app.secret_key = 'your_secret_key'

@app.route('/login')
def login():
# Authenticate user
# ...
session['user_id'] = user.id
return redirect(url_for('dashboard'))

@app.route('/dashboard')
def dashboard():
if 'user_id' in session:
user_id = session['user_id']
# Fetch user data
# ...
return f'Welcome, {user.name}'
else:
return 'Unauthorized'

if __name__ == '__main__':
app.run()
  1. Extensions: Flask has a rich ecosystem of extensions that provide additional functionality, such as database integration, authentication, and form handling. These extensions can be easily integrated into your Flask application to add the desired features.

Hello World Example

To get started with Flask, you need to install it first. You can install Flask using pip:

pip install Flask

Once Flask is installed, you can create a simple "Hello, World!" application. Create a new Python file, for example, app.py, and add the following code:

from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
return 'Hello, World!'

if __name__ == '__main__':
app.run()

Save the file and run it using the following command:

python app.py

You should see the Flask development server start running. Open your web browser and navigate to http://localhost:5000, and you will see the "Hello, World!" message displayed.

That's it! You have successfully created a basic Flask application.

Comparison with Alternatives

Flask is often compared with other web frameworks, such as Django and Pyramid. Here are a few points of comparison:

  • Flask vs. Django: Flask is a micro-framework, while Django is a full-featured web framework. Flask provides more flexibility and allows you to choose only the components you need, making it suitable for small to medium-sized projects. Django, on the other hand, includes many built-in features and follows a "batteries included" approach, making it better suited for larger and more complex projects.

  • Flask vs. Pyramid: Flask and Pyramid are both lightweight web frameworks that prioritize simplicity and flexibility. Flask has a simpler syntax and a smaller learning curve, making it a popular choice for beginners. Pyramid, on the other hand, offers more advanced features and is often preferred by experienced developers looking for more control and extensibility.

For more information on Flask, you can visit the official Flask website: https://flask.palletsprojects.com/

I hope this tutorial helps you get started with Flask!