Python Kaiten API client for convenient work with it
Project description
Kaiten
Python Kaiten API client for convenient work with it
As this is an open-source project that is community maintained, do not be surprised if some bugs or features are not implemented quickly enough
Quickstart
Just import client, authorize with a server and token. After that you can get essences you need from the API.
import kaiten
client = kaiten.KaitenClient(server =, token = )
Get single resource
Card
card = client.get_card(card_id)
Space
space = client.get_space(space_id)
Board
board = client.get_board(board_id)
Current user
current_user = client.get_current_user()
Property
property = client.get_property(property_id)
Get list of resource
Use option: ids_only = True, if you need only id's to be represented in the list (list of Resource will be the default behavior)
For example:
spaces = client.list_of().spaces(ids_only=True) # will return list of space ids
List of spaces
spaces = client.list_of().spaces()
List of users
users = client.list_of().users()
List of tags
tags = client.list_of().tags()
List of properties
properties = client.list_of().properties()
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kaiten-1.0.0.tar.gz.
File metadata
- Download URL: kaiten-1.0.0.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21afc64ce94cb38e192bb9ed2a2d253355ab18d94b6bfaa6550e3b02123ccbf4
|
|
| MD5 |
ecb553ab8761088fc31c7b3e24302e7a
|
|
| BLAKE2b-256 |
6533fc6bd765bbb0d495093d8180ec80e37d79c20fd64098c60aa77543999ac4
|
File details
Details for the file kaiten-1.0.0-py3-none-any.whl.
File metadata
- Download URL: kaiten-1.0.0-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b2daf0f608b5a1b57a4adb82a871d13b5534c9981a5959c5fad5d6c59403330
|
|
| MD5 |
ff2f25495e262047e5a289aeaa2b4f89
|
|
| BLAKE2b-256 |
96bc47f5b48caaa9689d67a41095b18e824cc5cb531c5fb22c13b1a6107fc53a
|