flask-restx
flask-restx copied to clipboard
Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask
When I used a RequestParser and specified help and choices for a body parameter, these were ignored. Also I've fixed that the kwargs parameter was not used in The API...
Hello, I have this code: ```python from flask import Flask from flask_restx import Api, Namespace, Resource app = Flask(__name__, static_url_path="") def decorator(func): def wrapper(*args, **kwargs): return func(*args, **kwargs) wrapper.__doc__ =...
**RESTX + WebArgs** I had to switch my project to RESTX + WebArgs environment, as reqparse had been deprecated. But auto-documentation in Swagger is not available for webargs.flaskparser and doesn't...
**Is your feature request related to a problem? Please describe.** I am using flask-restx and I have a lot of Resources per namespace. I would like to be able to...
### ***** **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, I am trying to use @api.marshal_with a JSON schema but I get the following error: AttributeError: 'SchemaModel' object has no attribute 'items' The schema is correct as it works...
Here is the minimum code required to replay the error: ```python from flask import Flask, request from flask_restx import Resource, Api, fields app = Flask(__name__) api = Api(app) simple_email_model =...
I would like to request support to nullable option in all model fields like String, Integer, Boolean, DataTime and so on. In Nested fields we have "allow_null" parameter that could...
**Ask a question** A clear and concise question: the UI page is exposing to public and everyone can play with the endpoints, this is danger if we couldont add password...