Simple CLI to-do list app
$ git clone https://github.com/AnandBaburajan/roo.git
$ cd roo
$ pip install .
roo
provides 3 commands:
v
: View a lista
: Add a task to a liste
: Edit a task in a listd
: Delete a task from a list
$ roo a today "Clean the house"
$ roo a today "Take Roo for a walk"
$ roo v today
[1]: Clean the house
[2]: Take Roo for a walk
$ roo d today 1
$ roo v today
[1]: Take Roo for a walk
$ roo e today 1 "Take Roo for a run"
$ roo v today
[1]: Take Roo for a run
roo
is distributed under the MIT License.