• Post category:StudyBullet-15
  • Reading time:5 mins read


Create web apps using the Python Flask Framework!

What you will learn

How to create Python Flask based web apps

How to use Jinja2 Templates

How to use an SQLite database with Flask

How to use CSS to style your Flask web app

How to use an Object Relational Manager through SQLAlchemy

How to create and use HTML forms with your Flask app

How to build Flask web apps (Project: BMI Calculator)

Other neat Flask tricks like Uploading Files, Cookies and Sessions

Description

This course will teach you how to make your first Python Flask Web Applications

The course includes a web app project to help you get started building apps.Β  It covers all the basics to start writing your own applications. It covers URL Routing, Jinja 2 templates, Cookies, Sessions and other web technologies!


Get Instant Notification of New Courses on our Telegram channel.


We expect you know the basics of Python, HTMLΒ and CSS. But don’t worry if you’re not an expert on these topics yet.

Enough reading. Time to code

English
language

Content

Introduction

Introduction
What is Flask?

Beginning Flask

Installing Virtualenv
Virtualenv
Lecture Notes
Hello World
Lecture Notes
Routes
Lecture Notes
Dynamic Routes
Lecture Notes
Exercise
Exercise Solution

Templates

Templates
Lecture Notes
Template Variables
Lecture Notes
Pass Multiple Variables
Lecture Notes
Control Flow
Lecture Notes
Static Files
Lecture Notes
Styling your Flask app with CSS

Create BMI Calculator in Flask!

Instructions: Make a BMI Calculator
Make a BMI Calculator

HTTP Handling

Error Codes
Handling HTTP GET and POST methods in Flask
Flask Forms
Lecture Notes
Upload Files

Cookies and Sessions

Cookies
Lecture Notes
Sessions
Lecture Notes

Databases

Introduction
SQLite (Part 1)
SQLite (Part 2)
ORM with Flask: SQLAlchemy