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 208 flask-restx issues
Sort by recently updated
recently updated
newest added

## What's this all about? This is an attempt to fix issue #460, where werkzeug used to expose a function `werkzeug.routing.parse_rule` but made it private as of werkzeug==2.2.0. The method...

**Ask a question** There are several pull requests and issues that have not been replied to by anyone that contributes to this project for sometime. Is there a specific process...

question

the 2.2.0 release of [pallets/werkzeug](https://github.com/pallets/werkzeug) breaks flask-restx. Here you can find the following traceback: ``` ../../.local/lib/python3.8/site-packages/flask_restx/__init__.py:5: in from .api import Api # noqa ../../.local/lib/python3.8/site-packages/flask_restx/api.py:50: in from .swagger import Swagger ../../.local/lib/python3.8/site-packages/flask_restx/swagger.py:18:...

bug

**Ask a question** Why doesn't my code work? **Additional context** As mentioned in the title, I'm trying to migrate from `flask_restful`. Admittedly, I've only changed the import line from `flask_restful`...

question

Our small team hasn't had the bandwidth lately to keep up with flask-restx. And at least a few of us no one longer work as web devs, so we have...

enhancement

**Is your feature request related to a problem? Please describe.** `@api.expect(model)` and `@api.doc(body=model) ` want a model which must be at least a `{"key":value}` pair to be shown in Swagger...

enhancement

I currently ran into a strange issue where the I can send GET requests from a browser or curl and receive a totally fine 200 OK, ``` - - [26/Jul/2022...

bug

### **Code** ```python import json import requests from flask import Flask, request from flask_restx import Api, Resource, fields from jsonschema import FormatChecker app = Flask(__name__) api_restplus = Api( app, #...

bug

**Is your feature request related to a problem? Please describe.** Currently, it's quite unclear which arguments are accepted by which `flask_restx.fields` functions. For example, for `fields.Float`, [none are explicitly documented](https://flask-restx.readthedocs.io/en/latest/api.html#flask_restx.fields.Float)....

enhancement

### **Code** ```python from flask import Flask from flask_restx import Api, Resource from werkzeug.middleware.proxy_fix import ProxyFix app = Flask(__name__) app.wsgi_app = ProxyFix(app.wsgi_app) api = Api( app, version="1.0", title="Foo", description="A simple...

bug