/Flask

Python Flask

Primary LanguageHTML

Flask Tutorials

: This repo contains all the materials for Flask Tutorials of Corey Schafer on Youtube

This tutorial is consist of 13 courses learning how to build a full-feature Flask application for scratch. It covers how to get started with Flask, use templates, create a database, upload pictures, create an authentication system, and much more.


  • course_1 : basic templates, layout and inheritance, block content box, add bootstrap & CSS

  • course_2 : create forms.py / add register & login forms > make connection with forms.py by '@app.route' on hello.py

  • course_3 : install SQLAlchemy database > create db tables User, Post in models.py > separate the flask running part, the app init part, and the routes part from hello.py > make linkages between the files by "from hello import (module)"

    [ run.py >> init.py >> routes.py (~~ models.py & forms.py) ]