flask-restx
flask-restx copied to clipboard
Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask
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...
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...
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...
*** 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...
Adds support for empty JSON body inputs in the generated Swagger documentation:  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
### **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...
Please provide examples on connecting to DATBASE TABLES - New to Flask-RestX