flask-openapi3
flask-openapi3 copied to clipboard
Generate REST API and OpenAPI documentation for your Flask project.
Environment: - Python version: 3.12.3 - Operating system: Ubuntu 24.04 - Flask version: 3.0.3 - flask-openapi3 version: 4.0.0 Since version 4.0.0, aliases no longer work for forms. This is a...
Environment: - Python version: 3.12.3 - Operating system: Ubuntu 24.04 - Flask version: 3.0.3 - flask-openapi3 version: 4.0.0 Similar to #182, this also regressed in 2f33e859b9fa8a6b0114b0ae850cb4b1fda1e4c6. Example: ```python class TupleModel(BaseModel):...
hello,i have a question. I don't want to display the default error model,Or can I display all the responses from our project? How should I configure that? I only can...
Environment: - Python version: 3.12.3 - Operating system: Ubuntu - Flask version: 2.3.3 - flask-openapi3 version: 3.1.3 ## Warning If I define a model setting `Field.example` (not defined in pydantic):...
It would be great if this extension would support [Quart](https://github.com/pallets/quart) (maybe it already does?), which is flask rebuilt with native async support.
Environment: - Python version: 3.10.12 - Operating system: Linux Mint 21.1 - Flask version: 3.1.0 - flask-openapi3 version: 4.1.0 I'm trying to influence the generation of the `operationId`s of my...
New Feature - add an ability to maintain separate schemas for request and response models, similar to [FastAPI's implementation](https://fastapi.tiangolo.com/how-to/separate-openapi-schemas/#do-not-separate-schemas). ## Current Behavior Currently, `parse_parameters` overwrites component schemas (`APIView.components_schemas`) that were...
Hi, a bit confused on what's the proper way to add auth to openapi endpoints?
## Summary Currently, our usage of flask-openapi3 relies on the responses defined in the route definition to generate schemas. However, for my current project, I need to implement validation for...
Hey there, we are currently creating a Flask API and have the issue that the WSGI Script Alias from the Apache vHost configuration is only respected by the library in...