8
votes

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
2

2 Answers

30
votes

You can try this: from django.http import HttpResponse

6
votes

You are importing from wrong location

django.http this is right location from django.http import HttpResponse