Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 categories

Example: `[*] 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.