flask-smorest
flask-smorest copied to clipboard
DB agnostic framework to build auto-documented REST APIs with Flask and marshmallow
Bumps [apispec](https://github.com/marshmallow-code/apispec) from 6.4.0 to 6.5.0. Changelog Sourced from apispec's changelog. 6.5.0 (2024-02-26) Bug fixes: Include null as a value when using validate.OneOf or fields.Enum when allow_none is True for...
This is a draft to ask for opinion. @lafrech
This is a bit of a sanity check question and I'm not sure which library I should post it in, sorry about that. TLDR: Q: Is there a flag which...
I have project which uses flask-smorest and when I run it locally it shows docs on url `/docs/swagger`. But on my production server I have in nginx setup to append...
Because my api too many queries so i want to change method from GET to POST and use it only in request body. But it seems like @blp.paginate() not support...
@lafrech if you have a moment, please drop a note here if you support addressing the documented mixed multipart limitation in principle. If you do, I'll prepare a formal PR...
I'm currently using flask_smorest.fields.Upload to handle file uploads, but this only allows selecting a single file. Is it possible to upload many files? I am trying to upload multiple zip...
Hi, this is a bit of an edge case I'm running into, but I hope it's solvable with some configuration. It is also possible this is a bug with swagger...
Would like to have the option to use a different, more user-friendly name for OpenAPI/Swagger UI Blueprints without needing to change the underlying Flask Blueprint name. Currently, `register_blueprint` looks for...
As an example (modified from the documentation sample code): ```py class PetSchema(ma.Schema): id = ma.fields.Int(dump_only=True) name = ma.fields.String() class PetQueryArgsSchema(ma.Schema): name = ma.fields.String(required=False) blp = Blueprint( "pets", "pets", url_prefix="/pets", description="Operations...