You should probably never do
except Exception as e :
return HttpResponse("failed")
You should at least log the exception.
Then you might get more info about what went wrong and maybe you can solve it. If not you can update the question with the actual error.