Console version of Todo
A simple command-line application for managing a task list. It uses basic python libraries, so you shouldn't have any problems installing it.
The interaction takes place by entering commands into the console.
todo <command> [arguments]Commands:
add <task> Add a new task
list List all tasks
remove <task_id> Remove a task by its ID
Install the repository.
git clone https://github.com/Bebrowskiy/todo-console.gitGo to the root directory of the project and install the project in developer mode.
cd todo-console/pip install -e .