a to-do application
The To-Do List Application is a simple GUI-based task management tool built with Python's Tkinter library. It allows users to create, view, edit, and delete tasks. The tasks are stored in a local text file for persistent storage, enabling users to maintain their task list even after closing the application.
- Add Tasks: Users can add tasks with a title and description.
- Edit Tasks: Users can edit the title and description of existing tasks.
- Delete Tasks: Users can remove tasks from their list.
- Mark as Completed: Users can mark tasks as completed, providing clear visual feedback.
- Persistent Storage: All tasks are saved in a local text file to retain progress between sessions.
To run this application, you need to have Python installed on your machine. You can download Python from the official website.
This application requires the following Python library:
tkinter(comes pre-installed with Python)