GitHub - naemazam/todo-python-cli: A simple command-line interface (CLI) to-do list application in Python. This application allows you to add, view, remove, and edit tasks easily from your terminal. (original) (raw)
A simple command-line interface (CLI) to-do list application in Python. This application allows you to add, view, remove, and edit tasks easily from your terminal.
Features
- Add: Add a new task to your to-do list.
- View: View all the tasks in your to-do list.
- Remove: Remove a task from your to-do list.
- Edit: Edit an existing task in your to-do list.
- Exit: Exit the application.
Installation
Clone the repository from GitHub:
git clone https://github.com/naemazam/todo-python-cli.git cd todo-python-cli
Usage
Run the application:
python todo-python-cli.py
Follow the on-screen prompts to interact with your to-do list.
Example
Welcome to the To-Do List CLI!
1: Add 2: View 3: Remove 4: Edit 5: Exit
Choose an option: 1 Enter the task: Buy groceries Task added.
1: Add 2: View 3: Remove 4: Edit 5: Exit
Choose an option: 2
- Buy groceries
1: Add 2: View 3: Remove 4: Edit 5: Exit
Choose an option: 3 Enter the task number to remove: 1 Task removed.
1: Add 2: View 3: Remove 4: Edit 5: Exit
Choose an option: 5 Exiting the application.
Contributing
welcome
Enjoy using todo-python-cli! Happy task managing!
You can add or modify sections based on any additional functionality or specifics about your project. This `README.md` file provides a clear overview and instructions for using your to-do app.