flask-smorest icon indicating copy to clipboard operation
flask-smorest copied to clipboard

DB agnostic framework to build auto-documented REST APIs with Flask and marshmallow

Results 90 flask-smorest issues
Sort by recently updated
recently updated
newest added

I'm using flask-security to generate session and csrf tokens. It set's a cookie and the web frontend is expected to copy that cookie to every model-changing request. Swagger offers the...

This makes it possible to create 2 Api instances with the UI for the same app

The `Blueprint.doc` decorator is meant to add documentation that can't be inferred from the code or added by dedicated decorators. It allows the user to pass manual documentation that will...

enhancement

Hello, I really liked using Flask-smorest (reminded me a lot of the great pleasure of using google-endpoints), and i'm currently giving a shot at Quart (a Flask "clone" working with...

I like using `as_kwargs`, coming from flask-apispec which has a `@use_kwargs` decorator. Feature request: have a decorator that has `as_kwargs=True` so I don't have to type it every time Thanks!

enhancement
help wanted

Hi, I've not been able to figure out if there is a supported way to control the [style](https://swagger.io/specification/#parameter-style) for an argument. Example schema usage ```python class Example (Schema): f =...

question

It would be useful to reimplement the `ResponseMixin.response` function to accept a static function as the _schema_ argument so that we can build the schema based on the client request,...

enhancement

Hi, I believe that due to recent updates in both `apispec` and `marshmallow` my application started to throw warnings and exceptions (e.g., `marshmallow.exceptions.RegistryError`, `apispec.exceptions.DuplicateComponentNameError`) that were not happening a few...

question

Using a schema to validate/process the path arguments seems to pass the argument twice. The data-dict of the marshmallow schema is passed as an argument and the value is passed...