Skip to main content

pydantic support for APIStar

Project 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),
]
)
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

apistar-pydantic-0.0.1.tar.gz (6.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page