import asyncio from django.http import HttpResponse @asyncio.coroutine def hello_world(request): yield from asyncio.sleep(1) return HttpResponse("Hello world!")