BK Software
We do our best BK Software Ltd
0%

Python SDK

The official Python SDK supports Python 3.8+.

Installation

pip install bksoftware

Usage

import bksoftware

client = bksoftware.Client(api_key="YOUR_API_KEY")

# List projects
projects = client.projects.list(limit=10)
for p in projects.data:
    print(p.name)

Was this article helpful?