flask-restx
flask-restx copied to clipboard
Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask
### ***** **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...
Hi devs, thank you for maintaining this excellent package. **Is your feature request related to a problem? Please describe.** There is no way to enable Swagger UI deeplinks: https://flask-restx.readthedocs.io/en/latest/configuration.html Furthermore...
I am writing an endpoint where two params are part of the url ### **Code** ```python schedule_api = Namespace( "schedule", description="API for all the League's Schedule queries" ) schedule_payload =...
Is this project still alive or is it considered dead ? **Additional context** I am seeing a lot of PR (40+) and close to 300 open issues on this project,...
**Ask a question** Guys, do you have any suggestions regarding displaying Server-Side Event (SSE) responses within the Swagger UI? I have certain functions that are related to AI and require...
### **Repro Steps** 1. Run test-suite with `flask==3.1.0` 2. Broken! ### **Expected Behavior** Tests pass. ### **Actual Behavior** Tests fail. ### **Error Messages/Stack Trace** ``` =================================== FAILURES =================================== ______________ SwaggerTest.test_specs_endpoint_host_and_subdomain...
I'm working on a Flask-RESTful API and I'm trying to implement basic authentication using the HTTPBasicAuth class. I've included the authorizations dictionary in my API definition, but I'm encountering an...
When I use marshal_with, if there is Chinese, it will be garbled. I have set up app.json.ensure_ascii = False app.config["JSON_AS_ASCII"] = False And when I don't use marshal_with, there will...
Pydantic has become increasingly popular in the python world, and API development is of particular interest. Many API's work based on json requests which are a natural serialization for pydantic....
`flask-restx` lacks of ability to switch JSON [de]serializer. I prepared small patch to use `flask` machinery for JSON. Usage example: ```python import logging from datetime import datetime import sdjson from...