Python API Documentation
The Valispace python API lets you access and update objects in your Valispace deployment with python code.
Install the Valispace python API with pip:
pip install valispace
Import valispace API module in a python script:
import valispace
and initialize with
valispace = valispace.API()
More information about the functionalities and functions in the API can be found at github.com/valispace/ValispacePythonAPI. The Valispace python API is licensed under the MIT license, which means that anyone can contribute to the code by cloning the GitHub repository.
To store your Valispace login credentials we recommend using Keyring, instead of storing them as variables in your source code.