Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/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.
https://github.com/naemazam/todo-python-cli
naemazam python3 to-do-app to-do-list todo-app todoapp todolist
Last synced: about 1 month ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/naemazam/todo-python-cli
- Owner: naemazam
- Created: 2024-06-08T05:39:13.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-08T05:52:59.000Z (9 months ago)
- Last Synced: 2024-11-14T19:30:11.580Z (3 months ago)
- Topics: naemazam, python3, to-do-app, to-do-list, todo-app, todoapp, todolist
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.
## Features
1. **Add**: Add a new task to your to-do list.
2. **View**: View all the tasks in your to-do list.
3. **Remove**: Remove a task from your to-do list.
4. **Edit**: Edit an existing task in your to-do list.
5. **Exit**: Exit the application.## Installation
Clone the repository from GitHub:
```bash
git clone https://github.com/naemazam/todo-python-cli.git
cd todo-python-cli
```## Usage
Run the application:
```bash
python todo-python-cli.py
```Follow the on-screen prompts to interact with your to-do list.
## Example
```bash
Welcome to the To-Do List CLI!1: Add
2: View
3: Remove
4: Edit
5: ExitChoose an option: 1
Enter the task: Buy groceries
Task added.1: Add
2: View
3: Remove
4: Edit
5: ExitChoose an option: 2
1. Buy groceries1: Add
2: View
3: Remove
4: Edit
5: ExitChoose an option: 3
Enter the task number to remove: 1
Task removed.1: Add
2: View
3: Remove
4: Edit
5: ExitChoose 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.