First create an instance with your creds:
>>> from hdcloud import HDCloud
>>> hdcloud = HDCloud(USERNAME, PASSWORD)
You’ll need an HD Cloud account to use this library. You can either use your account’s username/password, or you can use a developer token from your user profile page and use those credentials instead.
Then call methods on the HDCloud object:
For example:
>>> hdcloud.jobs.all()
[<Job: 12345 - completed>]
>>> hdcloud.stores.get(id=2)
<Store: my store>
For details, see:
See also
HD Cloud’s API documentation.