Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bebrowskiy/todo-console
A simple command-line application for managing a task list
https://github.com/bebrowskiy/todo-console
console-application todo todo-console todo-list todolist
Last synced: about 1 month ago
JSON representation
A simple command-line application for managing a task list
- Host: GitHub
- URL: https://github.com/bebrowskiy/todo-console
- Owner: Bebrowskiy
- License: mit
- Created: 2024-06-04T11:37:34.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-04T12:00:19.000Z (7 months ago)
- Last Synced: 2024-06-05T13:14:12.641Z (7 months ago)
- Topics: console-application, todo, todo-console, todo-list, todolist
- Language: Python
- Homepage:
- Size: 267 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Console version of Todo
# 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.
```sh
todo [arguments]
``````
Commands:
add Add a new task
list List all tasks
remove Remove a task by its ID
```### Installation
Install the repository.
```sh
git clone https://github.com/Bebrowskiy/todo-console.git
```Go to the root directory of the project and install the project in developer mode.
```sh
cd todo-console/
``````sh
pip install -e .
```