Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/szewczukk/Nickel

Micro tasks manager written in pure Python
https://github.com/szewczukk/Nickel

python3 task-manager tasks todo todolist xml

Last synced: 3 months ago
JSON representation

Micro tasks manager written in pure Python

Awesome Lists containing this project

README

        



Micro tasks library written in pure Python

## Installation
1. Clone repo

$ git clone https://github.com/bjornus/Nickel

2. Build & install

$ python setup.py build

$ sudo python setup.py install

4. Init manager

$ nickel.py init

Done!

## Adding new task
If you want to place task in some project

$ nickel.py add --project=PROJ_NAME

Or if you want to just add new task without project

$ nickel.py add

## Checking tasks state
If you want to check some project

$ nickel.py check --project=PROJ_NAME

Or if you want to just check all tasks

$ nickel.py check

## Removing task

$ nickel.py remove --task=ID_TASK

## Completing task

$ nickel.py complete --task=ID_TASK

## Undone task (setting as in progress)

$ nickel.py undone --task=ID_TASK