quart-openapi
quart-openapi copied to clipboard
Module for Quart to add Flask-RESTPlus like functionality
In my code, it has a similar error. By the way, the `quart-openapi` version I used is `1.7.2` with the version of quart is `0.18.0`. The error message is as...
Hi, Here my openapi schema: ```json { "openapi": "3.0.0", "info": { "title": "OpenApi Rest Documentation", "version": "1.0" }, "servers": [ { "url": "http://" } ], "paths": { "/trolls": { "get":...
First of all: thank you for this nice quart extension! I was using flask and [connexion](https://github.com/zalando/connexion) before and now would like to use quart with this extension for an async...
I want to provide an API to my application without splitting it up in a backend and frontend. It's a small quick project. Can I just create the resources, wrap...
It would be nice for `quart-openapi` to validate responses against the response schema as well as requests against the request schema. Right now, response validators can be added for documentation...
I was testing this example code: ``` from quart import request,jsonify from quart_openapi import Pint,Resource app = Pint(__name__) expected = app.create_validator('sample_request', { 'type': 'object', 'properties': { 'foobar': { 'type': 'string'...
Spent some time trying to use `PintBlueprint` with `Quart` instead of `Pint`, so thought I'd add this error message to help others out who might make this same mistake. Would...