Python Client
Get the latest docs.
You are looking at documentation for an older release. Not what you want? Use the version selector on the top banner or click here.
Installing the Python Client
To use this client run the command pip install cloudify-rest-client==4.4
or add it to your dependencies file.
Using the Python Client
For more information about using the Python client, see the Python client documentation.
Here is an example of how to get blueprints:
from cloudify_rest_client import CloudifyClient
client = CloudifyClient('http://MANAGER_HOST')
blueprints = client.blueprints.list()
for blueprint in blueprints:
print blueprint.id