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

Hello. Going through the documentation, and it appears marshalling and serialization have been confused for each other. I believe marshalling is when you are moving data from one location to...

bug

Hi all, I'm having trouble exporting postman configs for even basic flask-restx apps. As an example, if we use the TodoDAO app given on the [documentation page for a full...

question

**Ask a question** I want to define PATCH as the HTTP verb for updating my resource, where I only want to update the resources partly, is there a way I...

question

I followed the [documentation](https://flask-restx.readthedocs.io/en/latest/marshalling.html#define-model-using-json-schema) to use JSON schema as model, but I encountered the error described as below. ### **Code** ```python from flask import Flask from flask_restx import Api, Resource,...

bug

I have multiple blueprints in my application, one for each version of the api. I have multiple namespaces for each blueprint API. I want to be able to aggregate the...

question

Hey, I'm trying to upload a list of files to my post method using the swaggerUI I am defining my input using RequestParser and add_argument method. Uploading one file works...

question

Fixes a TypeError when defining two endpoints in one routing declaration ``` @api.route('/hello', '/world') class HelloWorld(Resource): pass ``` > TypeError: Scaffold.route() takes 2 positional arguments but 3 were given This...

### ***** **BEFORE LOGGING AN ISSUE** ***** - Is this something you can **debug and fix**? Send a pull request! Bug fixes and documentation fixes are welcome. - Please check...

bug

### **Repro Steps** (if applicable) 1. Observe that [package.json](https://github.com/python-restx/flask-restx/blob/master/package.json) references swagger-ui 3.48 and up 2. Swagger fixed [CVE-2018-25031](https://nvd.nist.gov/vuln/detail/CVE-2018-25031) in December 2021 with release of [Swagger-UI 4.1.3](https://github.com/swagger-api/swagger-ui/releases/tag/v4.1.3) 3. This can also...

bug

**Ask a question** Currently im trying to set and path parameters and want to enum in swagger api docs. But i'm not able to find any clear documentation for that.

question