Client API Reference
The Python client API is provided by the Eozilla cuiman package.
The Client class provides a synchronous API.
If you want an asynchronous version, use the AsyncClient class instead.
It provides the same interface, but using asynchronous server calls.
Both clients return their configuration as a 
ClientConfig object.
Methods of the Client and AsyncClient 
may raise a ClientError if a server call fails. 
            cuiman.Client
    
              Bases: ClientMixin
The client API for the web service (synchronous mode).
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| config | Optional[ClientConfig] | Optional client configuration object. If given, other configuration arguments are ignored. | None | 
| config_path | Optional[str] | Optional path of the configuration file to be loaded | None | 
| server_url | Optional[str] | Optional server URL | None | 
| user_name | Optional[str] | Optional username | None | 
| access_token | Optional[str] | Optional private access token | None | 
Source code in cuiman\src\cuiman\api\client.py
                | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 |  | 
            get_capabilities(**kwargs)
    The landing page provides links to the
- The OpenAPI-definition (no fixed path),
- The Conformance statements (path /conformance),
- The processes metadata (path /processes),
- The endpoint for job monitoring (path /jobs).
For more information, see OGC API — Processes — Part 1 Section 7.2.
Returns:
| Name | Type | Description | 
|---|---|---|
| Capabilities | Capabilities | The landing page provides links to the API definition
(link relations  | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |  | 
            get_conformance(**kwargs)
    A list of all conformance classes, specified in a standard, that the server conforms to.
| Conformance class | URI | 
|---|---|
| Core | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/core | 
| OGC Process Description | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/ogc-process-description | 
| JSON | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/json | 
| HTML | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/html | 
| OpenAPI Specification 3.0 | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/oas30 | 
| Job list | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/job-list | 
| Callback | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/callback | 
| Dismiss | http://www.opengis.net/spec/ogcapi-processes-1/1.0/conf/dismiss | 
For more information, see OGC API — Processes — Part 1 Section 7.4.
Returns:
| Name | Type | Description | 
|---|---|---|
| ConformanceDeclaration | ConformanceDeclaration | The URIs of all conformance classes supported by the server. To support "generic" clients that want to access multiple OGC API - Processes implementations - and not "just" a specific API / server, the server declares the conformance classes it implements and conforms to. | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |  | 
            get_processes(**kwargs)
    The list of processes contains a summary of each process the OGC API - Processes offers, including the link to a more detailed description of the process.
For more information, see OGC API — Processes — Part 1 Section 7.9.
Returns:
| Name | Type | Description | 
|---|---|---|
| ProcessList | ProcessList | Information about the available processes | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  | 
Source code in cuiman\src\cuiman\api\client.py
              | 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |  | 
            get_process(process_id, **kwargs)
    The process description contains information about inputs and outputs and a link to the execution-endpoint for the process. The Core does not mandate the use of a specific process description to specify the interface of a process. That said, the Core requirements class makes the following recommendation:
Implementations should consider supporting the OGC process description.
For more information, see OGC API — Processes — Part 1 Section 7.10.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| process_id | str |  | required | 
| kwargs | Any | Optional keyword arguments that may be used by the underlying transport. | {} | 
Returns:
| Name | Type | Description | 
|---|---|---|
| ProcessDescription | ProcessDescription | A process description. | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 |  | 
            execute_process(process_id, request, **kwargs)
    Create a new job.
For more information, see OGC API — Processes — Part 1 Section 7.11.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| process_id | str |  | required | 
| kwargs | Any | Optional keyword arguments that may be used by the underlying transport. | {} | 
| request | ProcessRequest | Mandatory request JSON | required | 
Returns:
| Name | Type | Description | 
|---|---|---|
| JobInfo | JobInfo | Started asynchronous execution. Created job. | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |  | 
            get_jobs(**kwargs)
    List available jobs.
For more information, see OGC API — Processes — Part 1 Section 11.
Returns:
| Name | Type | Description | 
|---|---|---|
| JobList | JobList | A list of jobs for this process. | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |  | 
            get_job(job_id, **kwargs)
    Show the status of a job.
For more information, see OGC API — Processes — Part 1 Section 7.12.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| job_id | str | Local identifier of a job | required | 
| kwargs | Any | Optional keyword arguments that may be used by the underlying transport. | {} | 
Returns:
| Name | Type | Description | 
|---|---|---|
| JobInfo | JobInfo | The status of a job. | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |  | 
            dismiss_job(job_id, **kwargs)
    Cancel a job execution and removes it from the jobs list.
For more information, see OGC API — Processes — Part 1 Section 13.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| job_id | str | Local identifier of a job | required | 
| kwargs | Any | Optional keyword arguments that may be used by the underlying transport. | {} | 
Returns:
| Name | Type | Description | 
|---|---|---|
| JobInfo | JobInfo | Information about the job. | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |  | 
            get_job_results(job_id, **kwargs)
    List available results of a job. In case of a failure, list errors instead.
For more information, see OGC API — Processes — Part 1 Section 7.13.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| job_id | str | Local identifier of a job | required | 
| kwargs | Any | Optional keyword arguments that may be used by the underlying transport. | {} | 
Returns:
| Name | Type | Description | 
|---|---|---|
| JobResults | JobResults | The results of a job. | 
Raises:
| Type | Description | 
|---|---|
| ClientError | If the call to the web service fails
with a status code !=  
 | 
Source code in cuiman\src\cuiman\api\client.py
              | 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 |  | 
            close()
    Close this client.
Source code in cuiman\src\cuiman\api\client.py
              | 389 390 391 392 |  | 
            cuiman.ClientConfig
    
              Bases: BaseModel
Client configuration.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| user_name | name of a user of the service
provided by the given  | required | |
| access_token | API access token valid for the user
given by  | required | |
| server_url | a URL for a server compliant with the OCG API - Processes. | required | 
Source code in cuiman\src\cuiman\api\config.py
                | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |  | 
            cuiman.ClientError
    
              Bases: Exception
Raised if a web API call failed.
The failure can have several reasons such as
- the request failed with a status code that is not 2xx, or
- the received JSON response is not parsable.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| message | str | The error message | required | 
| api_error | ApiError | The details describing the error that occurred on the server or the details that describe a non-expected response from the server. | required | 
Source code in cuiman\src\cuiman\api\exceptions.py
                | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |  |