flask-restx icon indicating copy to clipboard operation
flask-restx copied to clipboard

Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask

Results 232 flask-restx issues
Sort by recently updated
recently updated
newest added

Updates to allow files lists, using the action="append" argument in the parser. Adds unit tests to confirm that this works, not only whilst the file list is present, but when...

add a comma to code block to make it work

Bumps [flask](https://github.com/pallets/flask) from 1.1.4 to 2.3.2. Release notes Sourced from flask's releases. 2.3.2 This is a security fix release for the 2.3.x release branch. Security advisory: https://github.com/pallets/flask/security/advisories/GHSA-m2qf-hxjv-5gpq, CVE-2023-30861 Changes: https://flask.palletsprojects.com/en/2.3.x/changes/#version-2-3-2...

dependencies
python

AuthorizationCode flow for oauth 2 authentication was not possible because it was not possible to specify the ClientSecret.

**Ask a question** How do I alias the parameter name of the backend that the front-end requests is inconsistent with the backend field? **Additional context**

question

**Is your feature request related to a problem? Please describe.** Using `@namespace.marshal_with` multiple times on one method results in only the outer-most `marhal_with`'s model being used. The only workaround is...

enhancement

When defining choices for a list in the JSON data input, validation does not work. This is true if type is `list` or if type is `str` and action is...

bug

### ***** **SIMILAR ISSUE IN flask-restplus** ***** - [this same issue was the in flask-restplus](https://github.com/noirbizarre/flask-restplus/issues/286) ### **Code** ```python from flask import Flask from flask_restx import Api app = Flask(__name__) api...

bug

### **Code** ```python from flask import Flask from flask_restx import Api, Resource, Namespace from flask_restx.fields import String, Nested app = Flask(__name__) api = Api(app) ns = Namespace('app', path='/', validate=True) todo_nested_model...

bug

Fix others iterable type in fields.List