def get_cosmos_client()

in src/cadet.py [0:0]


def get_cosmos_client(connection_url, auth):
    """
    Connects to the Cosmos instance via the `connection_url` (authenticating with `auth`)
    and returns the cosmos_client
    """
    return cosmos_client.CosmosClient(
        url_connection=connection_url,
        auth=auth
    )