A convenient python interface to the ESCALATE REST API.
git clone
this repo- from the repository root directory, run
pip install .
from escalateclient import ESCALATEClient
escalate=ESCALATEClient(escalate_url,
username,
password)
escalate.list_endpoints()
escalate.get(endpoint, data={})
escalate.post(endpoint, data={})
escalate.put(resource_url, data={})
escalate.delete(resource_url)