Cannot import name HttpResponse

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
+6
source share
2 answers

You can try the following: from django.http import HttpResponse

+20
source

You are importing from the wrong location

django.http is the correct location from django.http import HttpResponse

+3
source

Source: https://habr.com/ru/post/899762/


All Articles