Skip to main content

nflex-connector-utils provides a suite of tools to produce data structures when implementing resources connector nflex modules.

Project description

# Nflex Connector Utils

This python package provides a suite of tools to produce data structures when implementing resources connector nflex modules.

# Installation
```sh
pip install nflex-connector-utils
```

# Example

This example returns two servers.
```python
from nflex_connector_utils import Server, serialize_list


def get(event, context):
return serialize_list([
Server(id='server-1', name='Server 1'),
Server(id='server-2', name='Server 2'),
])
```

# Development
A Makefile has been included to do most common development things.
```sh
make clean
make setup
make test
make package
make upload
```

Project details


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