flask-restful-swagger
flask-restful-swagger copied to clipboard
A Swagger spec extractor for flask-restful
Pipeline
- Backup master is a duplicate of the master branch I made before any work started last winter. - Pipeline has the codebase quality controls, and test coverage. These changes...
Hello, guys. Why do I always see "Error Status Codes" in my UI? Even if success response code specified? Thanks.
Hi, When using the UI (api/spec.html) I want to test out my endpoints by sending in POST data in the form of application/json. The ui does show that the content...
Hi guys, I've seen that Swagger supports operations on a OAuth2 protected API. I've been trying to hack something in flask-restful-swagger to support it without much success. Any ideas on...
Are there any plans on including configurable authentication methods when adding `ApiKeyAuthorization` instances in `/flask_restful_swagger/static/index.html`? I'd be willing to make a pull request for this, but wanted to get input...
I have an app with a URL prefix: `api = Api(app, prefix="/api/v1")` And a simple view: ``` class AnimalView(Resource): @swagger.operation(notes="get an animal by ID", ) def get(self, animal_id): return build_data_response({},...
I really don't know, what is the schema of `@swagger.operation`. I would need some description of it's parameters like what values can be passed to `parameters` -> `paramType` and all...
I am trying to understand how to use `flask-restful-swagger`, but I really struggle with the README (only documentation, that I found). One of the reasons is, that many imports are...
I'm doing an auth service my Register endpoint looks like: ``` class Register(Resource): @swagger.operation( notes='Register a new User', responseClass=SwaggerUserModel.__name__, nickname='create', parameters=[ { "name": "body", "description": "This should send {"name", "password"}",...