Registry / devops / cloudcruise

cloudcruise

JSON →
library1.1.0pypypi✓ verified 82d ago

The official CloudCruise Python SDK for programmatic infrastructure observability and cost management. Version 1.1.0 supports Python ≥3.10, with monthly releases.

pip install cloudcruise
INSTALL
IMPORT
SIG · CLOUDCRUISE
C
cloudcruise
devopspythonv1.1.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

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

CloudCruise
from cloudcruise import CloudCruise
from cloudcruise import CloudCruiseClient

Creates a client with an API key and lists workspaces.

import os from cloudcruise import CloudCruiseClient client = CloudCruiseClient(api_key=os.environ.get('CLOUDCRUISE_API_KEY', '')) print(client.list_workspaces())
Debug
Known issues
breakingIn version 1.0.0, the import path changed from `cloudcruise.Client` to `cloudcruise.CloudCruiseClient`. Old code will raise `AttributeError: module 'cloudcruise' has no attribute 'Client'`.
fix
Change imports to `from cloudcruise import CloudCruiseClient`.
affects: >=1.0.0
breakingThe `api_key` parameter is now required. Previously you could omit it and rely on auto-detection. Omitting it raises `ValueError: Missing API key`.
fix
Always pass `api_key` explicitly.
affects: >=1.0.0
gotchaThe SDK uses `requests` internally and may retry on 429 status. If you are behind a corporate proxy, you must set `HTTP_PROXY` / `HTTPS_PROXY` environment variables; otherwise you get a `ConnectionError`.
fix
Set proxy environment variables or use `requests.Session` before initializing the client.
affects: all
Upgrade
Version history
1.1.0latest on PyPI · released Jun 5, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
4
Resources
cloudcruise — pip install cloudcruise · libregistry