Best Flask open-source libraries and packages

To do list flask

To do list with Flask framework
Updated 2 years ago

To do list with Flask framework

Description

This repository contains a to-do list project for a website. It was made in Python using the Flask framework and uses the sqlite database.

Creating a virtual environment

Open a terminal in your project directory and type the following command:

python -m venv venv

This will create a virtual environment named venv. To activate the virtual environment type the following command in your terminal:

"venv/scripts/activate.bat"

Next you have to install all required packages.

Packages

Use the package manager pip to install all required packages, which are listed in the requirements.txt file. You can use the command below.

pip install -r requirements.txt

Launch

To run the application, use the run.py file found in the repository. You can use a terminal by typing the following command or run it from the IDE.

python run.py

This will start the local server. Then, in a web browser, enter the address given in the terminal, adding the endpoint /tasks. Example:

127.0.0.1:5000/tasks

At this URL you will find the homepage of this application.

Tags sqlite