https://github.com/valentinalexeev/personalkanbanquickentry
A small tool to submit tasks to Personal Kanban via command line
https://github.com/valentinalexeev/personalkanbanquickentry
Last synced: 4 months ago
JSON representation
A small tool to submit tasks to Personal Kanban via command line
- Host: GitHub
- URL: https://github.com/valentinalexeev/personalkanbanquickentry
- Owner: valentinalexeev
- License: apache-2.0
- Created: 2014-05-07T13:23:54.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-07T13:50:03.000Z (about 11 years ago)
- Last Synced: 2025-01-04T05:19:59.141Z (6 months ago)
- Language: Python
- Size: 133 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
QuickEntry tool for Personal Kanban
========================pkqe is a small tool to submit tasks to Personal Kanban via command line. The tool works in case PK is set up to use Redis server as data source.
To submit a task you invoke the script on command line:
pkqe.py
Possible tags:
* #tag - assign tag to the task
* @person - assign task to a specific person (search by Initials)
* %topic - set a specific topic on a task
* $column - assign column directly
* !! - set High priority (must precede the message)
* ! - set Medium priority (must precede the message)Example:
`python pkqe.py !! Test task for a project $Pending %NewFeature #core #interface @DevA`Will create a task with text "Test task for a project" on column "Pending", topic "NewFeature" and assign tags "core" and "interface". It will also set the assignee to person with initials DevA.
Python dependencies
========================
pkqe is written in Python and relies on the following modules:
* redis-pyUsing with Launchy
========================
I use pkqe together with Launchy where a set a special tag for Runner plugin that launches the pkqe script.