/webargs-quixote

webargs support for quixote

Primary LanguagePythonMIT LicenseMIT

webargs-quixote

webargs support for Quixote web framework.

Install

pip install webargs-quixote
# or
poetry add webargs-quixote

Usage

from webargs import fields
from webargs_quixote import parser, use_args


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

Looks webargs docs for more details.