flask-restplus
flask-restplus copied to clipboard
Fully featured framework for fast, easy and documented API development with Flask
Implements https://github.com/noirbizarre/flask-restplus/issues/464
Hello, everyone, I am not sure that it is a right place to post it, but I came from https://flask-restplus.readthedocs.io/en/stable/swagger.html link I posted this already https://github.com/swagger-api/swagger-ui/issues/5794 Let me be more...
I want to document my response model as a list of strings like: ``` [ "value1", "value2" ] ``` which is valid JSON. So I want to be able to...
The last commit was made on Oct 1, 2018 - almost 5 months ago. Most of issues don't receive any answer. Does it mean the project is actually dead?
I have implemented support for http streaming using the flask Response object. This can be useful when generating large responses as it avoids timeouts. In my case it has helped...
The intended REST call was `http://localhost:5000/simple/hello2?message=iuujjopopj`. ## Error Code ``` [2019-01-23 10:13:36,531] ERROR in app: Exception on /simple/hello2 [GET] Traceback (most recent call last): File "c:\Tools\Anaconda3\lib\site-packages\flask\app.py", line 1813, in full_dispatch_request...
In the generated document, the name of the body can only be called payload? I want change the name to make more sense. ``` @au.route('/authenticate') @au.response(400, 'params error') class Authenticate(Resource):...
Import `OrderedDict` from `collections` instead of `collections.abc`. Fix issue https://github.com/noirbizarre/flask-restplus/issues/766. Note that I haven't included the change to the CHANGELOG since this issue was created in the current version and...
I have defined model as below. The field **sample_received_date** is required and required valid format as shown below. new_order = api.model('NewPGxOrder', { 'provider_id': fields.String(required=True, min_length=1, max_length=100), 'patient_id': fields.String(required=True, min_length=1, max_length=100),...
Issue #598 Implements a new `dot_escape` kwarg to `fields.Raw` to support '.' characters within a field name *without* using as a nesting separator. Current behaviour: ```python >>> data = {"my.dot.field":...