An open API service indexing awesome lists of open source software.

https://github.com/ischaojie/webargs-quixote

webargs support for quixote
https://github.com/ischaojie/webargs-quixote

quixote webargs

Last synced: 10 months ago
JSON representation

webargs support for quixote

Awesome Lists containing this project

README

          

# webargs-quixote

[webargs](https://webargs.readthedocs.io/en/latest/index.html) support for Quixote web framework.

## Install
```shell
pip install webargs-quixote
# or
poetry add webargs-quixote
```

## Usage

```python
from webargs import fields
from webargs_quixote import parser, use_args

@use_args({"value": fields.Int()})
def home(req, args):
return args
```

Looks [webargs](https://webargs.readthedocs.io/en/latest/index.html) docs for more details.