Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/piero-vic/ptd
- Owner: piero-vic
- License: mit
- Created: 2021-11-20T05:40:25.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-29T15:49:00.000Z (about 3 years ago)
- Last Synced: 2024-11-30T16:36:21.815Z (about 1 month ago)
- Topics: cli, python, todo
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.