Registry / http-networking / luzmo-sdk

luzmo-sdk

JSON →
library1.0.0pypypiunverified

Official Python SDK for the Luzmo Core API. Version 1.0.0, supports Python >=3.6 and <4.0. Enables programmatic management of dashboards, datasets, and users. Released with moderate cadence.

pip install luzmo-sdk
INSTALL
IMPORT
SIG · LUZMO-SDK
L
luzmo-sdk
http-networkingpythonv1.0.0
Install
2.1s avg
Import
Disk
19MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v1.0.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 21MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 2.1s · import 0.000s · 21MB
19MB installed
● package 19MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Client
from luzmo import Client
from luzmo_sdk import Client

Initialize client using environment variables, then list all dashboards.

from luzmo_sdk import Client import os api_key = os.environ.get('LUZMO_API_KEY', '') api_secret = os.environ.get('LUZMO_API_SECRET', '') client = Client(api_key, api_secret) # List dashboards for db in client.dashboards.list(): print(db['name'])
Debug
Known issues
gotchaThe SDK uses snake_case method names (e.g., list_items) while API docs may show camelCase.
fix
Always check the SDK source or official docs for method signatures.
affects: >=1.0.0
deprecatedPython 3.6 / 3.7 support is deprecated but still works; future releases may drop EOL versions.
fix
Use Python 3.8 or later for future-proofing.
affects: >=1.0.0
gotchaSome endpoints return paginated responses without automatic pagination; you must iterate manually.
fix
Check if the method has an 'all' parameter or use a while loop on next page tokens.
affects: >=1.0.0
Upgrade
Version history
1.0.0latest on PyPI · released Sep 6, 2023
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
luzmo-sdk — pip install luzmo-sdk · libregistry