Metadata-Version: 1.1
Name: apistar-pydantic
Version: 0.0.2
Summary: pydantic support for APIStar
Home-page: https://github.com/pslacerda/apistar_pydantic
Author: Pedro Sousa Lacerda
Author-email: pslacerda@gmail.com
License: MIT license
Description-Content-Type: UNKNOWN
Description: # apistar-pydantic
        
        
        [pydantic] integration for [APIStar]
        
        
        [pydantic]: https://github.com/samuelcolvin/pydantic/
        [APIStar]: https://github.com/encode/apistar/
        
        
        ## Installation
        
        ```bash
        $ pip install apistar-pydantic
        ```
        
        ## Usage
        
        ```python
        from typing import Dict
        from apistar import Route
        from apistar_pydantic import (
            WSGIApp as App,
            QueryData, BodyData, FormData
        )
        from pydantic import BaseModel
        
        #
        # Declare models
        #
        
        class City(BaseModel):
            name: str
            population: int
        
        class Computer(BaseModel):
            model: str
            price: float
        
        #
        # Create views
        #
        
        def resource_query(city: QueryData[City]) -> str:
            return "%s has %d citizens." % (city.name, city.population)
        
        def resource_body(computer: BodyData[Computer]) -> str:
            return "%s costs R$ %.2f" % (computer.model, computer.price)
        
        def resource_mixed(city: QueryData[City],
                           computer: BodyData[Computer]) -> Dict[str, BaseModel]:
            return {
                'city': city,
                'computer': computer
            }
        
        #
        # Start the app
        #
        
        app = App(
            routes=[
                Route('/resource_query', 'GET', resource_query),
                Route('/resource_body', 'POST', resource_body),
                Route('/resource_mixed', 'POST', resource_mixed),
            ]
        )
        ```
        
Keywords: apistar_pydantic
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
