Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 845 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 845 Bytes

Python Flask Tutorial

Simple notes webapp made using Python and Flask

This project is an example webapp made by following a YouTube tutorial by Tech With Tim on how to build a complete webapp in Python using the Flask web framework. It's features include:

  • Routes
  • Authentication
  • HTML rendering
  • Database connection
  • Creating and deleting notes in the user's home page
  • Message flashing

Setup and run

In order to run this project, make sure you already have Python installed, then follow the instructions:

  1. Clone this repository

  2. Install flask, flask-sqlalchemy and flask-login

    pip install flask, flask-sqlalchemy, flask-login
  3. Run the main.py file in the project directory

    python main.py
  4. Access the server in your localhost http://127.0.0.1:5000