A simple Flask-based web application for creating and managing ToDo Lists.
- User-friendly interface for creating, updating, and deleting ToDo items.
- ToDo items are stored in a SQLite database.
- Python
- Flask
- SQLite3
- Clone the repository to your local machine.
- Install dependencies using
pip install -r requirements.txt
. - Create a new SQLite database by running
python create_db.py
. - Start the Flask application by running
flask run
. - Open the application in your browser at
http://localhost:5000
.
- To create a new ToDo item, enter the task description in the input field and click the "Add" button.
- To edit a ToDo item, click the "Update" button next to the item you want to edit.
- To delete a ToDo item, click the "Delete" button next to the item you want to delete.
If you would like to contribute to the project, please fork the repository and create a pull request.
- This project was created using Flask, a lightweight web application framework for Python.
- Special thanks to the Flask community for creating and maintaining such a useful framework.