Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zacky2613/todo-cli
A python cli todo list which can create, move, and delete todos.
https://github.com/zacky2613/todo-cli
cli command-line command-line-tool python python3 todo
Last synced: 6 days ago
JSON representation
A python cli todo list which can create, move, and delete todos.
- Host: GitHub
- URL: https://github.com/zacky2613/todo-cli
- Owner: Zacky2613
- License: apache-2.0
- Created: 2023-02-16T12:27:24.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-21T07:44:17.000Z (almost 2 years ago)
- Last Synced: 2024-12-06T14:11:03.898Z (2 months ago)
- Topics: cli, command-line, command-line-tool, python, python3, todo
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# todo-cli
A python application tool to handle your tasks straight from the command line.
## Features/Usage
There are 3 categories which are todo, doing, and done. The following commands are how to interact with them
Add Task
Add a task to one of the categoriesExample: `[*] Task: todo update README.md file`
Move Task
Move a task from one category to another by task id (the 0)Example: `[*] Task: todo 0 doing`
Clear category
Clear a category in its entirety.Example: `[*] Category: todo`
Clear all
Just the input and it clears all## Inspiration
This is inspired off of kennxdy's doddot project.
How the categories and input selection are displayed is pretty close to kennxdy's. However, I've rewritten all the code and move the code structure around while having a completely different way of handling data in the backend.