Metadata-Version: 1.1
Name: nflex-connector-utils
Version: 0.1.2
Summary: nflex-connector-utils provides a suite of tools to produce data structures when implementing resources connector nflex modules.
Home-page: http://www.ntt.com
Author: NTT communications
Author-email: UNKNOWN
License: GNU General Public License v2 (GPLv2)
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
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development
