"""Methods for owsclient.""" import httpx from abacus_contract.config import ows_client def get(service, path, **options) -> httpx.Response: """GET request to specified ows service.""" return ows_client.get(service, path, **options)