Waldur SDK
Waldur SDK is a python wrapper
for typical REST operations.
You can use it, if you want to send requests to Waldur REST API directly from Python.
SDK is represented by Python module called waldur_api_client
.
Installation
Due to frequent SDK updates, installation from the public GitHub repository is highly recommended:
1 |
|
In order to perform operations, a user needs to create an instance of AuthenticatedClient
class:
1 2 3 4 5 6 7 |
|
This instance provides interface for further interaction with Waldur and will be used across examples in related documentation.
Error handling
If the API call fails or returns an unexpected status code, it may raise UnexpectedStatus
exception if the client is configured with raise_on_unexpected_status=True
. This can be handled using a try...except
block. The exception contains both the status code and the response content for debugging purposes.
Example:
1 2 3 4 5 6 7 8 9 10 |
|
The UnexpectedStatus
exception is raised when:
- The API returns a status code that is not documented in the OpenAPI specification
- The
raise_on_unexpected_status
client setting is enabled (default is disabled)
Disabling TLS validation (not recommended!)
If you are running your commands against Waldur deployment with broken TLS certificates (e.g. in development), the trick below can be used to disable validation of certificates by SDK, beware that this is a security risk.
1 2 3 4 5 6 |
|
Sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
1 2 3 4 5 6 |
|
Installation with Poetry
The recommended way to install the SDK is using Poetry, a modern Python dependency management tool. In order to install Poetry, visit Poetry.
1 |
|
Air gapped installation
If your machine from where you run SDK is not connected to the public Internet, you can use the following method to transfer required libraries.
On the machine with access to the Internet:
1 2 3 |
|
Now transfer content of the dependencies folder and requirements.txt to a machine without public Internet and run.
1 |
|