views.py
from django import HttpResponse
def hello(request):
return HttpResponse("Hello world ! ")
Request Method: GET Request URL: http://127.0.0.1:8000/hello/ Django Version: 1.3.1 Exception Type: ImportError Exception Value: cannot import name HttpResponse
You can try this: from django.http import HttpResponse
You are importing from wrong location
django.http this is right location from django.http import HttpResponse
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With