-
I have a SQLAlchemy model from which I derive a flask-marshmallow schema:
```python
class Customer(db.Model):
__tablename__ = 'customer'
customer_id: Mapped[int] = mapped_column('pk_cust…
-
With the new python 3.7 dataclass (https://www.python.org/dev/peps/pep-0557/)
It would be nice to automatically infer the response schema from it , instead of:
```
from marshmallow import Schem…
-
From the todo example:
```
def post(self):
"""
This is an example
---
tags:
- restful
parameters:
- in: body
name: bod…
-
So i am trying to deploy an IRIS Model through flasgger , but when i hit the execute button under the API DOC GUI, i do not see any output , where am expecting an XML output. Although i can see the HT…
-
Atualmente temos definição de campos e validadores em 5 locais
- cli (argumentos dos comandos)
- UI (formulário wtforms)
- Admin (Formulario wtform do admin)
- API (reqparse do Flask_Restful)
…
-
I just want to write some relevant endpoints in one yaml file, otherwise I had to write hundreds yaml file.
This proposal does it make any sense?
-
OAS 3.x is not valid as the property `definitions` (even though it is added as empty list) is automatically added by flasgger. In case OAS 3.x this has been replaced by components (see [here](https://…
-
Hi,
I would like to change the apidocs url endpoint to some other endpoint such as api-docs.
Is there any way to do this through some configuration?
Thank you
Moshe
-
When I import fields
`from flasgger import fields`
I have the next error:
`Traceback (most recent call last):
File "", line 1, in
AttributeError: 'NoneType' object has no attribute 'String'`
…
-
Hi,
Sorry for placing this issue here, but I don't know if this is the correct place.
Is there any option to "force" the "Try it out" button:
I don't want to always click "Try it out" in Flasgger t…