from sanic import Sanic, response app = Sanic("Example") @app.route("/") async def test(request): return response.json({"test": True}) if __name__ == "__main__": app.run(host="0.0.0.0", port=8000)