Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

Latest commit

 

History

History
10 lines (7 loc) · 387 Bytes

File metadata and controls

10 lines (7 loc) · 387 Bytes

Python API

In order to use the python api directly, you must first obtain an auth token and identify which endpoint you wish to speak to. Once you have done so, you can use the API like so:

>>> from automationclient import Client
>>> automation = Client('1', endpoint=OS_AUTOMATION_ENDPOINT, token=OS_AUTH_TOKEN)
>>> components = automation.componentes.list()

That's all!!