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
- Host: GitHub
- URL: https://github.com/ischaojie/webargs-quixote
- Owner: ischaojie
- License: mit
- Created: 2022-07-18T02:18:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-18T15:34:51.000Z (over 3 years ago)
- Last Synced: 2025-03-15T01:44:06.845Z (about 1 year ago)
- Topics: quixote, webargs
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.