Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 775 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 775 Bytes

Console version of Todo

image

Todo App

A simple command-line application for managing a task list. It uses basic python libraries, so you shouldn't have any problems installing it.

Usage

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

Installation

Install the repository.

git clone https://github.com/Bebrowskiy/todo-console.git

Go to the root directory of the project and install the project in developer mode.

cd todo-console/
pip install -e .