Simple python library to connect to cyREST.
import pycyrest
client = pycyrest.CyRest()
print(client.operations) # get a list of all possible operations
client.getStylesNames() # Call operation as attribute.
help(client.getStylesNames) # See description and arguments for an operation
To get more information about each operation use the python help
function.
pip install pycyrest
MIT