-
I'm using `flask-restful` and have a resource with two URLs, like this:
```
api.add_resource(Job, '/job/', '/job')
```
where `job_id` is used only by the GET method.
In the resources code…
-
In a `POST` or `PUT` request, [nothing in the HTTP protocol states that the request bodies should be non-empty](https://stackoverflow.com/questions/4191593/is-it-considered-bad-practice-to-perform-htt…
-
**TL;DR**:
Is it possible to generate a spec definition automatically from a marshmallow schema and add it to my spec defined when I do `swag = Flasgger(app)` ?
--------
Currently, i'm writt…
-
I see that this issue was recently fixed by @scolby33 with ee62207d9671e848ab264900e7809a1dc0876964
The warning reported is the following.
```
lib/python3.7/site-packages/flasgger/utils.py:556:…
-
Hi!
I have created a template flask server for myself [Template Git Repo](https://github.com/BartStolarek/Flask-ServerOnly-Template).
When I run the server, and try to access the endpoint /apido…
-
This is app/__init__.py:
```
"""Initialize Flask app."""
from flask import Flask, redirect
from flasgger import Swagger
from flask_restful import Api
def create_app():
"""Create Flask…
-
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…
-
This issue to discuss compatibility of OpenAPI3 in flasgger. Currently, the code differentiates them in runtime, and mixes up the processing of both specifications. In long term, I believe that this w…
-
The code in https://github.com/pyeve/eve#eve-is-simple looked too easy, and there seemed to be no function within the code. Is it possible to be in code examples that compare Eve with these "other" Fl…
-
I'm using setuptools to install my package but it seems that flasgger has an error loading the yml files from the .egg.
This is the error:
```
MyApp.main:Exception on /swagger.json [GET]
Traceba…