Skip to main content

This library provides python Flask utilities and static assets for rendering Swagger UI

Project description

This library provides python Flask utilities and static assets for rendering Swagger UI.

# Example

```python
from flask import Flask, jsonify

from flask_swaggerui import render_swaggerui, build_static_blueprint

app = Flask(__name__)


@app.route('/')
def root():
return render_swaggerui(swagger_spec_path="/spec")


@app.route('/spec')
def spec():
return jsonify({"some swagger": "spec stuff"})


# Adds static assets for swagger-ui to path
app.register_blueprint(build_static_blueprint("swaggerui", __name__))

if __name__ == "__main__":
app.run(port=8080, debug=True)
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask-swaggerui-0.0.1.tar.gz (722.6 kB view hashes)

Uploaded Source

Built Distribution

flask_swaggerui-0.0.1-py2.py3-none-any.whl (740.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page