kanbanpy
A console-based Kanban task manager created in Python.
Create and manage tasks visually in your terminal using simple commands.
Features
- Simple CLI commands
- ASCII based kanban board
- Easy setup
- Stores tasks in a readable format (JSON).
Installation
Install using pip running the following command in the terminal:
pip install kanbanpy
Usage
If you installed the library, you can use the CLI as a system command:
kanbanpy [...args]
Or call it as a Python import:
python -m kanbanpy [...args]
Examples
Here are some examples of the commands available:
kanbanpy
kanbanpy create "A new todo"
kanbanpy next 1
kanbanpy prev 1
kanbanpy remove 1
Commands also have convenient aliases:
create
: c
next
: n
prev
: p
remove
: r
To explore the full list of commands, run:
kanbanpy --help
Tips
Aliases
A handful technique is to define a shell alias to call the cli and take
advantage of the command aliases defined by the package.
kanbanpy create "my new todo"
alias kb="kanbanpy"
kb c "my new todo"
Important tasks
Include a '!' in a task todo to mark it as important. The task will be
highlighted when displaying the board:
kanbanpy create "an important todo!"
kanbanpy create "project!: todo title"
kanbanpy create "(!) new todo"
Contributing
Thank you for considering contributing to my project! Any pull requests are
welcome and greatly appreciated. If you encounter any issues while using
the project, please feel free to post them on the issue tracker.
To contribute to the project, please follow these steps:
- Fork the repository.
- Add a new feature or bug fix.
- Commit them using descriptive messages, using
conventional commits is recommended.
- Submit a pull request.
License
This project is licensed under the MIT License. See the LICENSE file
for more details.