Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 570 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 570 Bytes

bambulab-cloud-py

Python implementation of bambulab-rs

An unofficial Python client for Bambulab's Cloud API.

🛠️ Usage

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.

License

MIT