17. This answer is not useful. Show activity on this post. urllib.request.urlopen returns an HTTPResponse object which cannot be directly json decoded (because it is a bytestream) So you'll instead want: # Convert from bytes to text resp_text = urllib.request.urlopen (url).read ().decode ('UTF-8') # Use loads to decode from text json_obj = json ...
Я новичок в Python и stack overflow. Я пытаюсь следовать учебнику по youtube (устаревшему, как я предполагаю, основываясь на ошибке, которую я получаю) относительно получения цен на акции.
... pass • Tests: html = response.content.decode('utf8') AttributeError: 'NoneType' object has no attribute 'content' • Code—we use django.http.HttpResponse ...
29.01.2016 · AttributeError: 'HTTPResponse' object has no attribute 'decode' Wenn wir jetzt mal meinen Code völlig vergessen, wie würdet ihr an das Problem herangehen? Edit: jetzt habe ich es noch mit dem "requests"-Modul ausprobiert und das …