Metadata-Version: 2.1
Name: nadia
Version: 0.1.3
Summary: Nadia: automatic generation of Marshmallow Schemas for OpenAPI 3 schemas.
Home-page: UNKNOWN
Author: Konrad Jałowiecki <dexter2206@gmail.com>, Magdalena Nowak
Author-email: dexter2206@gmail.com
License: MIT
Description: # nadia: create marshmallow Schemas OpenAPI 3 objects.
        
        [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
        [![Build Status](https://travis-ci.org/aubergine-developers/nadia.svg?branch=master)](https://travis-ci.org/aubergine-developers/nadia)
        [![Documentation Status](https://readthedocs.org/projects/nadia/badge/?version=latest)](http://nadia.readthedocs.io/en/latest/?badge=latest)
        [![codecov](https://codecov.io/gh/aubergine-developers/nadia/branch/master/graph/badge.svg)](https://codecov.io/gh/aubergine-developers/nadia)  
        
        **nadia** is a small and lightweight library for creating marshmallow Schemas from schemas defined in your OpenAPI spec.
        
        ## Basic usage
        
        ```python
        
        import yaml
        import nadia.api
        
        with open('petstore.yaml') as petstore:        
            data = yaml.load(petstore)
            
        builder = nadia.api.SchemaBuilder.create()
        schema = builder.build(data['components']['schemas']['Pet'])
        
        valid_pet = {'id': 100, 'name': 'Doggo', 'tag': 'sometag'}
        invalid_pet = {'id': 'foo', 'name': 'Lessie', 'tag': ['tag1', 'tag2']}
        
        print('Validation errors for Doggo: {}'.format(schema.validate({'content': valid_pet})))
        print('Validation errors for Lessie: {}'.format(schema.validate({'content': invalid_pet})))
        ```
        ## Documentation
        Documentation can be found at http://nadia.readthedocs.io/en/latest/
        
        ## Feature overview
        Currently **nadia** supports all of the OpenAPI 3 data types, except allOf/anyOf fields. Most of the options like required, nullable, etc. are also supported.
Keywords: openapi schema validation
Platform: Linux
Platform: Unix
Description-Content-Type: text/markdown
