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.4.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: gundi_client_v2-2.3.4.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.4.tar.gz
Algorithm Hash digest
SHA256 e6b1236f984b7e5e7b154d99718aecfb4082e09e1d717043ca723ddb1778c0b4
MD5 630927a0ab3f592c31596e71a521977d
BLAKE2b-256 56469c084d06bb5b35a0d8f522de65bc4e4c3fb394f3a819ae5d6073439630a6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: gundi_client_v2-2.3.4-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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 6fe0bb57ae9c446f8b2c796a86e124cec6541368e0bc966156e842d638fe8247
MD5 397cf074e48a97b3fbebb95f10de5e92
BLAKE2b-256 a563ea8c64a5757ddf00420afa26fbb1910531003cbf2157515d9fab7f4bcd61

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