Kanboard API client
Project description
Minimalist Kanboard Python client.
Author: Frédéric Guillot
License: MIT
Installation
pip install kanboard
This library is compatible with Python 2.7, Python 3.4 and 3.5.
Examples
The methods and arguments are the same as the JSON-RPC procedures described in the official documentation.
Python methods are dynamically mapped to the API procedures. You must use named arguments.
Create a new team project
from kanboard import Kanboard
kb = Kanboard('http://localhost/jsonrpc.php', 'jsonrpc', 'your_api_token')
project_id = kb.create_project(name='My project')
Authenticate as user
from kanboard import Kanboard
kb = Kanboard('http://localhost/jsonrpc.php', 'admin', 'admin')
kb.get_my_projects()
Create a new task
from kanboard import Kanboard
kb = Kanboard('http://localhost/jsonrpc.php', 'jsonrpc', 'your_api_token')
project_id = kb.create_project(name='My project')
task_id = kb.create_task(project_id=project_id, title='My task title')
See the official API documentation for the complete list of methods and arguments.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
kanboard-1.0.1.tar.gz
(5.4 kB
view details)
File details
Details for the file kanboard-1.0.1.tar.gz.
File metadata
- Download URL: kanboard-1.0.1.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdee75505dcb248ed6a2c6978001f6f4c4dea27e1cdfd6e9635662dd74427ad3
|
|
| MD5 |
8135eb8bb8d5027425139ddaf041507f
|
|
| BLAKE2b-256 |
2c907ce511e5ccf51607725bd51a8e9d05fd8c38c47f9ec61a7872a943ae9bee
|