Skip to content

osdu-client is a python library implementing a simple OSDU client. With abstracted out authorization backend.

License

Notifications You must be signed in to change notification settings

micmurawski/osdu-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

pypi

osdu-client is a python library implementing a simple OSDU client with an abstracted-out authorization backend.

Instalation

pip install osdu-client

Example

OSDU API client can be adjusted to specific OSDU deployment by defining auth backend according to AuthBackendInterface methods.

from typing import Dict

from osdu_client import OSDUAPI
from osdu_client.auth import AuthBackendInterface


class AuthBackend(AuthBackendInterface):
    def __init__(self, headers, base_url) -> None:
        self._headers = headers
        self._base_url = base_url

    def get_headers(self) -> Dict:
        return self._headers

    def get_base_url(self) -> str:
        return self._osdu_base_url

    def get_sd_connection_params(self, log_level: int = None) -> Dict:
        return {}


auth_backend = AuthBackend(
    headers={"Authorization": "Bearer XYZ"},
    base_url="https://exmaple.com"
)

storage_client = OSDUAPI.client('storage', auth_backend=auth_backend)
response = storage_client.get_record_versions(id="123")

About

osdu-client is a python library implementing a simple OSDU client. With abstracted out authorization backend.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages