import urllib.request
def forum(request):
with urllib.request.urlopen("http://www.google.ru") as url:
s = url.read().decode().encode('utf-8')
return HttpResponse(s)
由于网站上的西里尔字母,我得到“HTTP Error 403:Forbidden”。
示例http://hostdjango.pythonanywhere.com/
如果我更换“google.com”上的“google.ru”,那么一切正常。