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

https://github.com/pmcfernandes/tasks-console

Create tasks with console and python
https://github.com/pmcfernandes/tasks-console

python task-manager

Last synced: 5 months ago
JSON representation

Create tasks with console and python

Awesome Lists containing this project

README

          

### tasks
Create tasks with console and python

#### Usage
task.py list [--project=]
task.py find [--project=]
task.py add [--due=] [--project=]
task.py change [] [--due=] [--mark=] [--project=]
task.py resolved
task.py delete
task.py show projects
task.py -h | --help

#### examples

python3 task.py list
python3 task.py list --project=supermarket
python3 task.py find "hello world \w*"
python3 task.py find "buy chocolate \w*" --project=supermarket
python3 task.py add "My first task"
python3 task.py add "My first task" --due=2weeks
python3 task.py add "buy chocolate for easter" --due=2weeks --project=supermarket
python3 task.py 1 change "hello task"
python3 task.py 1 change --due=1month
python3 task.py 1 change --project=easter
python3 task.py 1 resolved
python3 task.py 1 delete
python3 task.py show projects