kanboard
Python client library for Kanboard
What it is and what it does
Kanboard is a Python client library that maps Kanboard's JSON-RPC API into Python method calls, letting you automate project and task management from your code. It supports both synchronous and asynchronous I/O patterns, handles authentication via API tokens or username/password, and includes error handling for network and API failures. The library uses named arguments and dynamically maps method names to API procedures, so the Python interface mirrors the official Kanboard API documentation.
You instantiate a Client with your Kanboard server URL and credentials, then call methods like create_project, create_task, or get_my_projects as context-managed objects. The client handles SSL certificates, custom authentication headers, request timeouts, and can be configured to work with self-signed certificates or custom certificate paths. It raises kanboard.ClientError for any API or network errors, giving you a single exception type to catch.
Use it for:
- Automate task creation and project setup from external systems or CI/CD pipelines.
- Build custom dashboards or reporting tools that pull project and task data from Kanboard.
- Synchronize Kanboard tasks with other tools or databases via periodic API calls.
- Write integration scripts that respond to events and update Kanboard state programmatically.
- Test Kanboard deployments or validate API behavior in automated test suites.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Python client library that wraps the Kanboard JSON-RPC API, allowing you to programmatically manage projects, tasks, and other Kanboard resources from Python code.
Yes. The package has no runtime dependencies, low install friction, active maintenance, a permissive MIT license, and zero known vulnerabilities. It directly solves the problem of programmatic Kanboard access for Python developers. Install it if you need to automate Kanboard workflows or integrate Kanboard into a larger Python application.
Install
kanboard on PyPI
pip
pip install kanboarduv
uv add kanboardpoetry
poetry add kanboardInstalling kanboard
Before you install
Low friction installation with no runtime dependencies. The package is actively maintained, with a recent release and ongoing repository activity.
License in practice
MIT license is permissive and places minimal restrictions on use, modification, and distribution in both open-source and proprietary contexts.
Quickstart
pip install kanboard
import kanboard
with kanboard.Client("http://localhost/jsonrpc.php", "admin", "secret") as kb:
project_id = kb.create_project(name="My project")
task_id = kb.create_task(project_id=project_id, title="My task")
Requires Python >= 3.9 and a running Kanboard instance with network access to its JSON-RPC endpoint.
Verify before relying
- Whether the client supports all current Kanboard API methods or only a subset of the documented procedures.
- Performance characteristics and rate-limiting behavior when making bulk API calls.
- Compatibility with specific Kanboard server versions beyond the general API documentation.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 142 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 258,802/month — #8,423 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: kanboard-1.1.8-py3-none-any.whl
Keywords: kanboard, api, client
Tags
More WWW/HTTP packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
h11h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
httpxHTTPX is a fully featured HTTP client library…
permissive · top 100 on PyPI
httpcoreA minimal low-level HTTP client library that…
permissive · top 100 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
jsonrpcclientGenerates JSON-RPC request objects and parses…
unclear · top 15,000 on PyPI
stcrestclientProvides a Python ReST API client library and…
permissive · top 15,000 on PyPI
todoist_api_pythonOfficial Python SDK for the Todoist API,…
permissive · top 15,000 on PyPI
grafana-clientA Python client library for the Grafana HTTP…
permissive · top 15,000 on PyPI
transmission-rpcPython wrapper around the Transmission…
permissive · top 15,000 on PyPI
python-sonarqube-apiProvides a Python client library for…
agpl · top 15,000 on PyPI
python-bitcoinrpcProvides a JSON-RPC client library for…
copyleft · top 15,000 on PyPI
py-zabbixProvides Python bindings to query and interact…
copyleft · top 15,000 on PyPI
flipt-clientA Python client for Flipt feature flag…
permissive · top 15,000 on PyPI
qbittorrent-apiPython client library that wraps the…
permissive · top 15,000 on PyPI