Skip to content

2020

#38: Forms for Your Flask App

From small contact forms to whole applications for data collection, forms are an important part of most web applications. Let us look how we can work with forms in Flask.

#37: Decorators

Decorators are an interesting concept in Python. We use them in Flask to configure routing, but they are not limited to this use case. Let us find out what we can do with them and how they work.

#36: Routing in Flask

URLs are important for web applications. They are like an API for your application and search engines can use them to rank your site. Flask gives you a lot of flexibility to map URLs to your view functions.

#35: Shared Layouts in Jinja

Our web application will be a maintenance nightmare when all our pages contain the full layout of our site. Luckily for us, Jinja offers a simple solution for this problem called template inheritance.

#34: Jinja Templates

A web application that only returns plain strings is boring. To turn your Flask application into something optical pleasing, we need a template engine like Jinja.

#32: First Steps With Flask

It is now time for me to do some web development. I choose the Flask framework because it allows me to start quickly and later add more functionality when I need it.