rs_client/stac/prip_client.md
PripClient class implementation.
PripClient
Bases: StacBase
PripClient class implementation.
Attributes: see :py:class:RsClient
Source code in docs/rs-client-libraries/rs_client/stac/prip_client.py
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 | |
href_service
property
Return the RS-Server PRIP URL hostname. This URL can be overwritten using the RSPY_HOST_PRIP env variable (used e.g. for local mode). Otherwise it should just be the RS-Server URL.
__init__(rs_server_href, rs_server_api_key, logger=None, **kwargs)
Initializes an PripClient instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rs_server_href
|
str | None
|
The URL of the RS-Server. Pass None for local mode. |
required |
rs_server_api_key
|
str | None
|
API key for authentication. |
required |
logger
|
Logger | None
|
Logger instance (default: None). |
None
|
**kwargs
|
dict[str, Any]
|
Arbitrary keyword arguments that may include:
- |
{}
|
Source code in docs/rs-client-libraries/rs_client/stac/prip_client.py
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 | |