DRB OData CSC implementation
Project description
OData CSC implementation
This drb-impl-odata module implements the OData protocol access following the Copernicus Space Component schema (CSC) with DRB data model. It is able to navigate among Product entities of a OData CSC service.
Nodes
ODataServiceNode
Represents the OData CSC service. This node has no attribute and
has as children Product entities of the service defined by
ProductNode
.
A specific ProductNode
can be retrieved during the bracket and
slash navigation by his Name(str) or by his Id(UUID).
CSC OData services required can be access using the second (optional) parameter auth of ODataServiceNode, this parameter must be an requests.auth.AuthBase object, see requests documentation for more details.
ODataProductNode
Represents a Product entity of the OData CSC service. This
node has as attribute properties of the associated entity and has
for unique child a ProductAttributeNode
ODataProductAttributeNode
This node allowing to represent the navigation link between the
Product entity and its attributes. It has no attribute and has as
children Attribute entities associated to the Product entity,
defined by AttributeNode
ODataAttributeNode
Represents an Attribute entity. This node has no child and has as attribute properties associated to the Attribute entity.
Predicate
ODataCustomQuery
This predicate allows to retrieve a specific subset of children of an ODataServiceNode.
Cache set up
Some cache has been implemented to limit the number of requests to the server. These cache evicts cache entries based on both time and space. the time and the cache size can be changed by adding these two variables to the runtime environment.
DRB_ODATA_NODE_REQUEST_CACHE_EXPIRE_TIME_SEC = 120
DRB_ODATA_NODE_REQUEST_CACHE_MAX_ELEMENTS = 32
Here are all the queries that use a cache
def req_svc(odata: OdataNode) -> dict:
def req_svc_products(odata: OdataNode, **kwargs) -> list:
def req_product_by_uuid(odata: OdataNode, prd_uuid: str) -> dict:
def req_product_attributes(odata: OdataNode, prd_uuid: str) -> List[dict]:
The time of the cache eviction can be change by calling reset_cache_expiration_time(sec=1)
:
req_svc_products.reset_expiration_time(sec=1)
Installation
pip install drb-impl-odata
Examples
from uuid import UUID
from requests.auth import HTTPBasicAuth
from drb_impl_odata import ODataServiceNode, \
ODataProductNode, ODataAttributeNode, ODataQueryPredicate
# generate ODataServiceNode without authentication
odata = ODataServiceNode('https://my.csc.odata.com')
# generate ODataServiceNode with authentication mechanism
odata = ODataServiceNode('https://my.csc.odata.com',
auth=HTTPBasicAuth('usr', 'pwd'))
# total number of children
product_count = len(odata)
# retrieve first ODataProductNode
node_idx = odata[0]
# retrieve last ODataProductNode
node_idx = odata[-1]
# retrieve 10 first products
products = odata.children[:10]
# retrieve Product by name
name = 'S2B_OPER_MSI_L0__GR_EPAE_..._D05_N02.06.tar'
node_name_list = odata[name] # returns a list
node_name = odata[name] # returns first occurrence of the list
# retrieve Product by UUID
uuid = UUID('0723d9bf-02a2-3e99-b1b3-f6d81de84b62')
node_uuid = odata[uuid]
# get product attributes
prd_node = odata[uuid]
attr_node = prd_node['Attributes']['Footprint']
attr_type = attr_node.get_attribute('ValueType')
attr_value = attr_node.value
# filter and order products
filtered_children = odata / ODataQueryPredicate(filter="startswith(Name,'S1')",
order="ContentLength desc")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for drb_impl_odata-1.0b3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae91ac609b9d3f552a94e8c4e595eaa849b4a73a1d9da6319717666be453467c |
|
MD5 | 0f0a2f39a21e65c1048233d6a2e321a7 |
|
BLAKE2b-256 | 7b50e38db9fbc49d063094969f4c47891454e909864ea41ae0fc5714a59bda9f |