Skip to main content

An async client for Gundi's API

Project description

Gundi Client

Introduction

Gundi, a.k.a "The Portal" is a platform to manage integrations. The gundi-client is an async python client to interact with Gundi's REST API.

Installation

pip install gundi-client-v2

Usage

from gundi_client_v2 import GundiClient
import httpx

# You can use it as an async context-managed client
async with GundiClient() as client:
   try:
    connection = await client.get_connection_details(
        integration_id="some-integration-uuid"
    )
    except httpx.RequestError as e:
        logger.exception("Request Error")   
        ...
    except httpx.TimeoutException as e:
        logger.exception("Request timed out")
        ...
    except httpx.HTTPStatusError as e:
        logger.exception("Response returned error")
    else:
        for integration in connection.destinations:  
            ...
   ...

# Or create an instance and close the client explicitly later
client = GundiClient()
try:
    response = await client.get_connection_details(
        integration_id="some-integration-uuid"
    )
    except httpx.RequestError as e:
        logger.exception("Request Error")   
        ...
    except httpx.TimeoutException as e:
        logger.exception("Request timed out")
        ...
    except httpx.HTTPStatusError as e:
        logger.exception("Response returned error")
    else:
        for integration in connection.destinations:
            ...
   ...
   await client.close()  # Close the session used to send requests to Gundi

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gundi_client_v2-2.3.3.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

gundi_client_v2-2.3.3-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file gundi_client_v2-2.3.3.tar.gz.

File metadata

  • Download URL: gundi_client_v2-2.3.3.tar.gz
  • Upload date:
  • Size: 4.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.28.1 setuptools/66.1.1 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10

File hashes

Hashes for gundi_client_v2-2.3.3.tar.gz
Algorithm Hash digest
SHA256 6db7177b6044fa11d3bf6855992e9b6b9cab1a41ae6b259746f6c83454eaace9
MD5 ba7053ef56b6cad048678465d219d588
BLAKE2b-256 d50d0f63a89741c98393fcdfb193c4cf31837dad2f0e00146e964102bcd6260d

See more details on using hashes here.

Provenance

File details

Details for the file gundi_client_v2-2.3.3-py3-none-any.whl.

File metadata

  • Download URL: gundi_client_v2-2.3.3-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.28.1 setuptools/66.1.1 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10

File hashes

Hashes for gundi_client_v2-2.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d94d58fdaf4043d7fef21bd7a7a07f274504c559621e6b791e23e7d40972925b
MD5 727e246c131defdd437e64ed4c6d5726
BLAKE2b-256 75442539b8e3d40ef67ec4aa0088afc3abffe2fb939ba2d1f9647ff9e042d0a8

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page