Flask-RESTPlus is a Flask extension for building REST APIs with automatic Swagger documentation. Version 0.13.0 is the final release; the project is effectively in maintenance mode and superseded by Flask-RESTx. It offers request parsing, serialization, and Swagger UI generation.
pip install flask-restplus==0.13.0No compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic setup with Flask-RESTPlus exposing a simple GET endpoint.
Migrate to flask-restx: replace imports from flask_restplus to flask_restx.
Define a RequestParser and use @api.expect(parser).
Always place @api.response after @api.route and the Resource class definition.
No dependency data recorded yet.