Metadata-Version: 2.1
Name: teagen
Version: 0.0.4
Summary: The Test Equipment Automation Generator Python Package
Home-page: https://github.com/open-traffic-generator/teagen
Author: ajbalogh
Author-email: andy.balogh@keysight.com
License: MIT
Description: # Teagen (Test Equipment Automation Generator)
        The `Teagen` python package does the following:
        - bundles individual yaml files into a single file
        - post process x- extensions
        - validates the bundled openapi.yaml file
        - generates an enhanced ux python package using the bundled openapi.yaml file
        
        ## Getting started
        Install the package
        ```
        pip install teagen
        ```
        
        Generate a python package from OpenAPI models
        ```python
        import teagen
        
        tgen = teagen.Teagen(api_files=['./tests/api/api.yaml'])
        ```
        
        ## Specifications
        > This repository is based on the [OpenAPI specification](
        https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.3.md) which is a standard, language-agnostic interface to RESTful APIs. 
        
        > Modeling guide specific to this package
        
        
        
Keywords: teagen testing open traffic generator automation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing :: Traffic Generation
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.7, <4
Description-Content-Type: text/markdown
