Python implementation of bambulab-rs
An unofficial Python client for Bambulab's Cloud API.
from bambulab_cloud import BambuClient
client = await BambuClient.login(email, password)
profile = await client.get_profile()
print(profile)
devices = await client.get_devices()
print(devices)
tasks = await client.get_tasks()
print(tasks)
Supported calls so far are just GET
requests for data.