swagger-ui-py icon indicating copy to clipboard operation
swagger-ui-py copied to clipboard

Swagger UI for Python web framework, such Tornado, Flask and Sanic. https://pwzer.github.io/swagger-ui-py/

Results 16 swagger-ui-py issues
Sort by recently updated
recently updated
newest added

I use swagger-ui-py==21.12.8 and locally Openapi documentation is created without problems and I can enjoy it at http://localhost:8005/api/doc (8005 is custom). We deploy in our preview envs, and this url...

A blueprint should, for most purposes be indistinguishable from an application, and I think it makes perfect sense to have, say, a flask blueprint for an API, and add a...

Assume i have an open api json/yaml spec, i want a lambda function to return the swagger ui as a response via api gateway i.e. ``` User ---> API Gateway...

Hi, first let me thank your for coming up with this lib ;) And before coming to the issue, here are my env settings: ```shell python = 3.9 quart =...

I haven't tested this with other handler integrations but in the flask integration, because the Blueprint is created with a hardcoded name "swagger_blueprint", you can't add ui more than once...

bug

In my generated `swagger.json`, I see the correctly generated servers section: ``` "servers": [ { "url": "http://localhost:80/", "description": "Local environment" }, { "url": "http://foo.com", "description": "Main Endpoint" } ], ```...

Hello, Can I set displayRequestDuration: true? https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/ Is it possible? Thanks

enhancement

Hi all, I was wondering is, using this api, it would be possible to set some configuration value dynamically. It would be great thinking about the API version for example....

When I try to setup swagger to serve the UI from root `/` (rather than `/api/docs`): ```python api_doc(app, config_path='swagger.yml', url_prefix='', title='API title') ``` I get the following error: ``` Traceback...