tornado-swagger
tornado-swagger copied to clipboard
Swagger API Documentation builder for tornado server.
post: tags: - pet summary: uploads an image operationId: uploadFile parameters: - name: petId in: path description: ID of pet to update required: true schema: type: integer format: int64 requestBody:...
Bumps [black](https://github.com/psf/black) from 22.6.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...
And I saw that there is a PR https://github.com/mrk-andreev/tornado-swagger/pull/69 created in May but it still not merged.
As OpenAPI Specification 3.0 does not support schemes and basePath any longer, I removed them from the generate_doc function and instead added the supported servers.
I was trying the allow_cors option on the latest version 1.5.0, and when trying to start the server having the `allow_cors=True` inside the setup_swagger function, i get the following error:...
**Describe the bug** I tried to use the basic example from tornado_swagger, `examples/simple_server.py` Once the server has been launched. i can navigate to the main swagger page using `localhost:8080/api/doc` But...
This should fix issue #77 (And it will add support for jwt token as asked in my question #79 )
I was trying to use tornado-swagger, with a jwt token authenticated project. I tried to follow the auth-server example: https://github.com/mrk-andreev/tornado-swagger/blob/master/examples/auth_server.py Where the security is specified in the `setup_swagger` call: ```python...
## Issue: Incorrect Handling of `securityDefinitions` for OpenAPI 3 in `_builders.py` ### Description: I've identified an issue in the `OpenApiDocBuilder` class where the handling of `securityDefinitions` for OpenAPI 3 is...
**Is your feature request related to a problem? Please describe.** My API as a whole is located under a certain prefix, e.g. `/services/gradingtool-service/...`, and all the individual endpoints are relative...