flask-restful-swagger icon indicating copy to clipboard operation
flask-restful-swagger copied to clipboard

A Swagger spec extractor for flask-restful

Results 52 flask-restful-swagger issues
Sort by recently updated
recently updated
newest added

I have a url that is "/v1/users" When I use flask-restful-swagger, i got following error: File "/Library/Python/2.7/site-packages/flask/app.py", line 64, in wrapper_func return f(self, *args, **kwargs) File "/Library/Python/2.7/site-packages/flask/app.py", line 951, in...

I am using the project to generate the swagger UI with the params in my url, but all the params are not visible in Swagger UI. only the param variables...

I'm trying to generate document for following function ``` "Some code ommitted" @swagger.operation( notes='some random note', responseClass=str, nickname='upload', parameters=[ ], responseMessages=[ { "code": 201, "message": "Created. The URL of the...

Swagger operation decorator can't handle unicode strings for its keyword arguments. Crashes at line 319 due to thinking a unicode string is an object.

bug

https://github.com/swagger-api/swagger-ui Swagger UI needs some update. Much has changed over the last 2 years. @niall-byrne

Instead of showing all the resources under the root `/` path, let's group those by resourceName. Like the pet store example.

I add the API resource like below( omit some code), but I can only open the API1 link and see the two APIs under one resource. Please guide.. ![image](https://cloud.githubusercontent.com/assets/10130476/15346902/e86ad836-1cee-11e6-973f-c7fe62d0cfff.png) api1...

Trying to figure out what I have done wrong. I am registering 3 different blueprints into my app, but the spec.html page only ever shows the operations for whichever one...

Line 4 in example/blueprints.py should be "PYTHONPATH=. python examples/**blueprints.py**" instead of "PYTHONPATH=. python examples/**basic.py**"?

I want to use swagger.model with SQLAlchemy. In this case all properties should be defined not from **init** but by a callable 'resource_sqlalchemy_fields' which will return all properties. Before doing...