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 noticed that `__init__`'s kwargs are currently unused while `init_app` could use for additional configurations which could added upon object initialization in case an app or blueprint instance added along...

**Problem** I got 1 namespace and some routes in it. Each route - class with `@ns.xxx(...)` decorators. My problem: routes classes are big and they lay in one file where...

question

I have several use cases where the stakeholders making requests to my webservice require an API component that is essentially an arbitrary dictionary but with some extra type information about...

question

I'm using flask-restx in a project that deals with millions of elements in the output using SQLAlchemy as ORM. This has the side effects of flask-restx allocating many GBs of...

enhancement

*** redirect url does not exist *** I'm just wondering if anyone here has seen this working? Currently authorize option is configured and appears but the return url is /oauth-redirect.html...

question

Adds support for empty JSON body inputs in the generated Swagger documentation: ![image](https://user-images.githubusercontent.com/30942843/219701293-3556ceab-99f2-4fa0-b611-3fd0f1c4cf4d.png) The code is essentially just ignoring any arguments with a `None` name, so if it is the...

Swagger UI has `deepLinking` parameter which allows to deeply link into tags and operations within a url. See https://swagger.io/docs/open-source-tools/swagger-ui/usage/deep-linking/ Add SWAGGER_DEEP_LINKING parameter to flask application and handle it here https://github.com/python-restx/flask-restx/blob/master/flask_restx/templates/swagger-ui.html#L54

enhancement

### **Code** ```python from myapi import api_v1 # Create the blueprints api_blueprint = Blueprint("api", __name__, url_prefix="/api") api_v1_blueprint = Blueprint("api_v1", __name__, url_prefix="/v1") # Register the nested blueprint api_blueprint.register_blueprint(api_v1_blueprint) # Add the...

bug

Please provide examples on connecting to DATBASE TABLES - New to Flask-RestX

documentation
question