
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
⚠️ This package is being replaced by Sanic Extensions. The project will continue to be monitored, but no new features or major development is anticipated. Sanic Extensions contains a near 1:1 upgrade if you are using Sanic OpenAPI with OAS3. Ask in the forums or discord server for questions about upgrading.
Give your Sanic API a UI and OpenAPI documentation, all for the price of free!
Check out open collective to learn more about helping to fund Sanic.
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.
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:
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:
Please check the documentation on Readthedocs
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.
FAQs
Easily document your Sanic API with a UI.
We found that sanic-openapi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.