"""API Client for ows_store.""" import requests from requests import Response class OwsStoreAPIClient: """API Client for ows_store.""" def __init__(self, base_url: str, headers: dict[str, str]): """Initialize ows_store_APIClient class.""" self.base_url = base_url self.headers = headers def get_hello(self) -> Response: """Execute a GET against /hello endpoint.""" endpoint = "{}/hello".format(self.base_url) return requests.get(endpoint, headers=self.headers)