Mini Project in Flask : ToDo App

 MINI PROJECT: TODO APP


A to-do list app lets you write, organize and reprioritize your tasks more efficiently.They also let you attach notes, links and files to a task, and many let you see when someone else has completed a task.In many ways, a good to-do app is the ultimate productivity app.

In this article, we will learn how to make a todo list app using Flask framework.In this app, you can add your todo items and mark them as complete or incomplete or you can delete the todo list.

Installation:

pip install flask

To install Database:

pip install Flask-SQLAlchemy

Now, we must create the folder templates inside the application directory and save our html templates in that directory.


In this case, our file name is base.html

So, the path of our script file templates->base.html




Next, we have to create the python file

In this case, our file name is app1.py




Comments

Popular Posts