"""API Client for ows-abacus-adjustment.""" import requests class AbacusAdjustmentAPIClient: """API Client for ows-abacus-adjustment.""" def __init__(self, base_url, headers): """Initialize ows_account_APIClient class.""" self.base_url = base_url self.headers = headers def get_hello(self): """Execute a GET against /hello endpoint.""" endpoint = '{}/hello'.format(self.base_url) return requests.get(endpoint, headers=self.headers)