Easily document your Sanic API with a UI.
Project description
Sanic OpenAPI
Give your Sanic API a UI and OpenAPI documentation, all for the price of free!
Sponsor
Manage pull requests and conduct code reviews in your IDE with full source-tree context. Comment on any line, not just the diffs. Use jump-to-definition, your favorite keybindings, and code intelligence with more of your workflow.
Thank you to our sponsor. Check out open collective to learn more about helping to fund Sanic.
Installation
pip install sanic-openapi
Add Swagger UI with the OpenAPI spec:
from sanic_openapi import swagger_blueprint
app.blueprint(swagger_blueprint)
You'll now have a Swagger UI at the URL /swagger/
and an OpenAPI 2.0 spec at /swagger/swagger.json
.
Your routes will be automatically categorized by their blueprints.
OpenAPI 2
Here is an example to use Sanic-OpenAPI 2:
from sanic import Sanic
from sanic.response import json
from sanic_openapi import openapi2_blueprint
app = Sanic(name="AwesomeApi")
app.blueprint(openapi2_blueprint)
@app.route("/")
async def test(request):
return json({"hello": "world"})
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000)
And you can get your Swagger document at http://localhost:8000/swagger like this:
OpenAPI 3
⚠️ Sanic OpenAPI 3 support is experimental. This feature may be subject to change in future releases.
Here is an example to use Sanic-OpenAPI 3:
from sanic import Sanic
from sanic.response import json
from sanic_openapi import openapi3_blueprint
app = Sanic(name="AwesomeApi")
app.blueprint(openapi3_blueprint)
@app.route("/")
async def test(request):
return json({"hello": "world"})
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000)
And you can get your Swagger document at http://localhost:8000/swagger like this:
Documentation
Please check the documentation on Readthedocs
Contribution
Any contribution is welcome. If you don't know how to getting started, please check issues first and check our Contributing Guide to start you contribution.