Como enviar o arquivo em resposta django

from django.http import FileResponse
...
...
response = FileResponse(open('myfile.png', 'rb'))
XeN0N