Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/piero-vic/ptd

A minimal to-do list application for the command line.
https://github.com/piero-vic/ptd

cli python todo

Last synced: 26 days ago
JSON representation

A minimal to-do list application for the command line.

Awesome Lists containing this project

README

        

# ptd
> A minimal terminal based todo list written in Python.

## Installation

Run the following command.

```
pip install git+https://github.com/piero-vic/todo.git
```

## Usage

*ptd* will search for a `.todos` file inside your home directory. All the tasks are stored as JSON objects.

### CLI

```
Usage: ptd [OPTIONS] COMMAND [ARGS]...

To Do list for the command line.

Options:
--help Show this message and exit.

Commands:
add Add a new task to the list.
clean Remove finished tasks from the list.
init Initialize a collection of todos.
modify Modify the text of an existing task.
reorder Reset ids of todo (no arguments) or swap the position of two todos.
toggle Toggle the status of a task by giving his id.
```

## Acknowledgments
This project is mainly based on [td](https://github.com/Swatto/td). I just wanted to build it myself in a language I know.