Python Client

In this section you will find information about our python API client. Read our technical documentation for more information

Python Client

To use this client run the command pip install cloudify-rest-client==4.1 or add it to your dependencies file.

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