diff --git a/examples/try_everything.py b/examples/try_everything.py index e94ffc6e..f7191ecc 100644 --- a/examples/try_everything.py +++ b/examples/try_everything.py @@ -1,6 +1,8 @@ +import os + from sanic import Sanic from sanic.log import log -from sanic.response import json, text +from sanic.response import json, text, file from sanic.exceptions import ServerError app = Sanic(__name__) @@ -31,6 +33,10 @@ async def test_await(request): await asyncio.sleep(5) return text("I'm feeling sleepy") +@app.route("/file") +async def test_file(request): + return await file(os.path.abspath("setup.py")) + # ----------------------------------------------- # # Exceptions