serverless-discovery-sdk

Serverless Service Discovery SDK


License
MIT
Install
pip install serverless-discovery-sdk==0.0.5

Documentation

serverless-discovery-sdk-python

The last serverless micro-service you'll ever wonder how to find

The AWS Serverless Discovery SDK interacts with a discovery microservice to discover endpoints for micro-services written for a serverless architecture. This is similar to clustered services such as Consul or ZooKeeper, but without the concept of instances or nodes that must be monitored for online state. This library is designed to support use both on the server side (for service-to-service lookups) and on the browser/client side.

This project contains the Python bindings for the discovery service; Other bindings can be found in the AdAstraDev organization on GitHub

Installation

python3 -m pip install serverless-discovery-sdk

Usage

Python

from serverless_discovery_sdk import DiscoverySdk
sdk = DiscoverySdk('https://abcdefghij.execute-api.us-east-1.amazonaws.com/prod')
endpoints = sdk.lookupService('my-service', 'dev')