Metadata-Version: 1.0
Name: nadia
Version: 0.1.5
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| |Build Status| |Documentation Status| |codecov|
        
        **nadia** is a small and lightweight library for creating marshmallow
        Schemas from schemas defined in your OpenAPI spec.
        
        Basic usage
        -----------
        
        .. code:: 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.
        
        .. |License: MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
           :target: https://opensource.org/licenses/MIT
        .. |Build Status| image:: https://travis-ci.org/aubergine-developers/nadia.svg?branch=master
           :target: https://travis-ci.org/aubergine-developers/nadia
        .. |Documentation Status| image:: https://readthedocs.org/projects/nadia/badge/?version=latest
           :target: http://nadia.readthedocs.io/en/latest/?badge=latest
        .. |codecov| image:: https://codecov.io/gh/aubergine-developers/nadia/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/aubergine-developers/nadia
        
Keywords: openapi schema validation
Platform: Linux
Platform: Unix
