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

I want to send data in formData in swagger but it returns None. However, it displays that it is multipart/form-data but returns None

enhancement

I am using `flask-restx==1.1.0` My Python is `3.8.10` Sometime I am seeing this issue in my swagger dashboard `GET https://{host}/api/swaggerui/swagger-ui-standalone-preset.js net::ERR_ABORTED 404 (NOT FOUND) {host}/:71 GET https://{host}/api/swaggerui/swagger-ui-bundle.js net::ERR_ABORTED 404 (NOT...

bug

Any suggestions on how to password protect the swagger UI with basic auth? I was going to use something like flask-httpauth or maybe just write my own wrapper but the...

question

Allows the developer to faster create basic api model by given an sqlalchemy table + tools.py file which contains createApiModel. + test_tools_createApiMode.py to check if it works. + Add sqlalchemy...

I am using the expect decorator, and the result of model validation is eventually printed with flask_restx.abort. How do I customize this response?

question

Hi, folks So, in DB I have some flatten entity which represents account. It looks like: ``` data = { "id": 1, "name": "name", "is_active": True, "status": "INITIALIZING", "created_date": "2020-08-12...

question

Flask-restx uses `ujson` for serialization by default, falling back to normal `json` if unavailable. As has been mentioned before `ujson` is quite flawed, with some people reporting rounding errors. Additionally,...

bug
good first issue

Dear All, I am trying to use [response marshaling](https://flask-restx.readthedocs.io/en/latest/marshalling.html) but I get an error. I managed to make the fields/marshal work as indicate in the [example - Nested fields](https://flask-restx.readthedocs.io/en/latest/marshalling.html#nested-field) ###...

bug
documentation