Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/szewczukk/Nickel
- Owner: szewczukk
- License: mit
- Created: 2017-07-06T20:42:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T12:11:22.000Z (about 7 years ago)
- Last Synced: 2024-04-27T23:56:57.342Z (7 months ago)
- Topics: python3, task-manager, tasks, todo, todolist, xml
- Language: Python
- Homepage:
- Size: 43 KB
- Stars: 18
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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