Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenjitakahashi/td
a non-offensive, per project ToDo manager.
https://github.com/kenjitakahashi/td
cli python todo todolist
Last synced: 13 days ago
JSON representation
a non-offensive, per project ToDo manager.
- Host: GitHub
- URL: https://github.com/kenjitakahashi/td
- Owner: KenjiTakahashi
- License: gpl-3.0
- Created: 2012-12-14T22:13:23.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-02-26T00:42:15.000Z (over 7 years ago)
- Last Synced: 2024-10-31T17:38:39.045Z (20 days ago)
- Topics: cli, python, todo, todolist
- Language: Python
- Homepage:
- Size: 108 KB
- Stars: 48
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/KenjiTakahashi/td.png?branch=master)](https://travis-ci.org/KenjiTakahashi/td) [![Coverage](https://coveralls.io/repos/KenjiTakahashi/td/badge.png?branch=master)](https://coveralls.io/r/KenjiTakahashi/td)
**td** is a non-offensive, per project ToDo manager.
Heavily inspired by [devtodo][devtodo], but with some nasty features, like:
* Shorter commands for most used actions.
* Sorting/Filtering specific levels only.
* Persistent sort/filter/view options.
* Written in pure Python (it even has docstrings).
* Tests.Oh, and it will automagically pick up your existing [devtodo][devtodo] lists!
## screenshot
![screenshot](https://img.kenji.sx/td.png)## requirements
* python3
* distribute (for setup)
* nosetests (for test-suite)## installation
Through [PyPI][pypi]
```sh
$ pip install td
```
or from sources
```sh
$ python setup.py install
```## usage
#### show
To show your complete ToDo list, just run **td** without any parameters.
```sh
$ td
```#### add
Typing
```sh
$ td a(dd) []
```
will start an interactive item adding session.Optional *parent_index* parameter specifies item, under which the new one will be nested.
Instead of using interactive session, one can also specify them in command line, like below.
```sh
$ td a(dd) [] --
$ td a(dd) [] -
```#### edit
Typing
```sh
$ td e(dit)
```
where *index* is an item's index, will start an interactive item editing session.Similarly to **a(dd)**, one can also specify new values in command line.
```sh
$ td e(dit) --
$ td e(dit) -
```
One special cause here is reparenting, done like below.
```sh
$ td e(dit) --parent
```#### remove
Typing
```sh
$ td r(emove)
```
will remove item under *index*.#### done/undone
Typing
```sh
$ td d(one)
```
will mark item under *index* as done, while typing
```sh
$ td D
$ td undone
```
will mark it as not done.#### modify
Performs a one time modification of the list and saves it to disk.**sort**
Used to sort items on the list.
General syntax is
```sh
$ td (v|m|o) -s [+|-]{,}[[]{:}[](+|-)]
$ td (v|m|o) --sort [+|-]{,}[[]{:}[](+|-)]
```
but it looks cryptic, so lets split it into some more specific use cases.To sort everything ascending by name, type
```sh
$ td (v|m|o) -s
$ td (v|m|o) -s +
```
To sort everything descending by name, type
```sh
$ td (v|m|o) -s -
```
To sort specific level by name, type (as before, + goes for ascending and - for descending)
```sh
$ td (v|m|o) -s (+|-)
```
To sort everything by a field other than name, type
```sh
$ td (v|m|o) -s (+|-)
```
To sort specific level by a field other than name, type
```sh
$ td (v|m|o) -s :(+|-)
```
And to specify muliple rules, use a comma (`,`). For example this
```sh
$ td (v|m|o) -s +,1-,2:priority+
```
will sort items at the second level ascending by priority, item at the first level descending by name, and all other levels ascending by name.Note that to sort by multiple conditions, just supply them one by one and they'll be applied in order of appearance.
**purge**
Typing
```sh
$ td (v|m|o) -p
$ td (v|m|o) --purge
```
will remove all completed items.**done/undone**
Used to batch mark items as done or not.
General syntax is
```sh
$ td (v|m|o) -d [[]{:}[[=]]]
$ td (v|m|o) --done [[]{:}[[=]]]
```
```sh
$ td (v|m|o) -D [[]{:}[[=]]]
$ td (v|m|o) --undone [[]{:}[[=]]]
```
As with **sort**, we'll split it into use cases.To mark all items, type
```sh
$ td (v|m|o) -(d|D)
```
To mark all items at specific level, type
```sh
$ td (v|m|o) -(d|D)
```
To mark items matching regexp at *any* field and level, type
```sh
$ td (v|m|o) -(d|D)
```
To mark items matching regexp at *specific* field and *any* level, type
```sh
$ td (v|m|o) -(d|D) =
```
To mark items matching regexp at *any* field and *specific* level, type
```sh
$ td (v|m|o) -(d|D) :
```
To mark items matching regexp at *specific* field and level, type
```sh
$ td (v|m|o) -(d|D) :=
```
Of course, these rules can also be chained using comma (`,`).#### view
Affects how the list is displayed on the screen. It does not modify the list physically and only takes effect for one run, all settings are then gone.Shares the interface of `modify` command, with following additions.
**nocolor**
Disables any possible color codes, i.e. prints pure textual data. Might be useful for storing and/or reusing the output.
```sh
$ td v --no-color
```#### options
Describes persistent options, which will be applied every next time **td** is run.Shares the interface of `modify` command, with following additions.
**global**
Stores options globally (in `~/.tdrc`), which means that they will be applied to all lists.**Note:** Local options take precedence over global ones.
```sh
$ td o -g
$ td o --global
```[devtodo]: http://swapoff.org/devtodo1.html
[pypi]: https://pypi.python.org/pypi/td