Python client for GitKraken Glo Boards API
Project description
py-glo-board
A python library to help interact with GitKraken Glo Boards API
Supported Endpoints & Features
API Endpoints:
This package supports the following v1 Glo Boards API endpoints
Boards
- Get Boards
- Create Board
- Get Boards by ID
- Edit Board
- Delete Board
Columns
- Create column
- Edit column
- Delete column
Cards
- Get Cards
- Create Card
- Create Cards batch
- Get Card By ID
- Edit Card
- Delete Card
- Get Cards By Column ID
Labels
- Create Label
- Edit Label
- Delete Label
Attachments
- Get Attachments
- Create Attachment
Comments
- Get Comments By Card ID
- Create Comment
- Edit Comment
- Delete Comment
User
- Get User
Requirements
Python 3.6 or higher
Installing
pip install py-glo-board
Example
from py_glo_boards_api import GloBoard, types
globoard = GloBoard('<YOUR_PAT_TOKEN_HERE>')
# List all boards available (Only gets the id and the name of the board)
globoard.get_boards()
# Or select the fields you need, with the options available in the Glo api
fields=['archived_columns', 'archived_date', 'columns', 'created_by', 'created_date', 'invited_members', 'labels', 'members', 'name']
boards = globoard.get_boards(fields, per_page=3)
# Get card
globoard.get_card('<BOARD_ID>', '<CARD_ID>').to_dict()
FAQ
Please refer to Git Kraken Documentation for any further reading.
License
The source code for py-glo-board is released under the MIT License.
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
py-glo-board-1.0.2.tar.gz
(5.8 kB
view details)
File details
Details for the file py-glo-board-1.0.2.tar.gz
.
File metadata
- Download URL: py-glo-board-1.0.2.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd0d3ed4ff360f5bdbf10597630c84baa101fc305d623df0e7903354c4a37137 |
|
MD5 | 54be41c63c09b0f316253010b049ca67 |
|
BLAKE2b-256 | 3f13f21c039d0fef173656a1d97a748f0ef465b5d0ff6a5cc1e412200f2e2995 |