Merge pull request #453 from seemethere/add_file_example

Adds file response object example
This commit is contained in:
Eli Uriegas 2017-02-16 17:17:29 -06:00 committed by GitHub
commit 9cf9d3ad5c

View File

@ -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