flask-restful-swagger
flask-restful-swagger copied to clipboard
A Swagger spec extractor for flask-restful
First off, great work! :smile: An idea: Flask-restful has a module called `reqparse` that is intended to be used as the main way to consume request parameters from within an...
I have a restful resource that takes an argument specifying the database table that it should query. The tables are each also set up as swagger models and the resource...
Is there a reason that path parameters are not marked as required by default?
In the swagger.operation when the "summary" or "notes" parameter are given but no comment is given in the function, a "None" is displayed below. See picture. 
Hi, When you define more than 1 blueprint without the same api_prefix (for REST API versioning) and different api_spec_url (when testing a tunned api_spec_url and forgetting old /api/spec on in...
According to the [Swagger spec](https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md), setting `allowMultiple = True` will cause a CSV string (comma-separated values) to be converted to an array. The caveat is this field may be used...
Hi, I just wanted to point out that not specifying a dataType for endpoint parameters will cause swagger.js to break and none of your endpoints will show up. Took me...
I noticed that the swagger endpoints do not work properly when the Api prefix is set instead of the Blueprint's url_prefix. e.g. ``` # This does not work even though...
If any method (get, post,put, or delete) are not defined on a resource, swagger crashes, on file swagger.py, on line 98 you should validate if the method exist... and else,...
It appear that commit 82f4ff94a3e0b7bda880d4d6cff04e242f58cc82 broke `/docs` in the examples, because the path to `static/` is no longer valid (since it's in a parent directory). Repro: 1. Clone 82f4ff94a3e0b7bda880d4d6cff04e242f58cc82 2....