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

Usage

import aiohttp
from gundi_client import PortalApi

async with aiohttp.ClientSession() as session:
    try:
        response = await portal.get_outbound_integration_list(
            session=session, inbound_id=str(inbound_id), device_id=str(device_id)
        )
    except aiohttp.ServerTimeoutError as e:
        logger.error("Read Timeout")              
        ...
    except aiohttp.ClientResponseError as e:
        logger.exception("Failed to get outbound integrations for inbound_id")
        ..
    else:
        # response contains a list configs as dicts
        for integration in response:  
            .. 

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-0.2.2.tar.gz (7.5 kB view hashes)

Uploaded Source

Built Distribution

gundi_client-0.2.2-py3-none-any.whl (7.9 kB view hashes)

Uploaded Python 3

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