質問編集履歴
1
エラーコードの前の部分を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -23,6 +23,52 @@
|
|
23
23
|
|
24
24
|
|
25
25
|
```
|
26
|
+
|
27
|
+
Traceback (most recent call last):
|
28
|
+
|
29
|
+
File "kakaku_scraping.py", line 18, in <module>
|
30
|
+
|
31
|
+
response = requests.get(url, headers = USER_AGENT)
|
32
|
+
|
33
|
+
File "/opt/anaconda3/lib/python3.8/site-packages/requests/api.py", line 76, in get
|
34
|
+
|
35
|
+
return request('get', url, params=params, **kwargs)
|
36
|
+
|
37
|
+
File "/opt/anaconda3/lib/python3.8/site-packages/requests/api.py", line 61, in request
|
38
|
+
|
39
|
+
return session.request(method=method, url=url, **kwargs)
|
40
|
+
|
41
|
+
File "/opt/anaconda3/lib/python3.8/site-packages/requests/sessions.py", line 530, in request
|
42
|
+
|
43
|
+
resp = self.send(prep, **send_kwargs)
|
44
|
+
|
45
|
+
File "/opt/anaconda3/lib/python3.8/site-packages/requests/sessions.py", line 643, in send
|
46
|
+
|
47
|
+
r = adapter.send(request, **kwargs)
|
48
|
+
|
49
|
+
File "/opt/anaconda3/lib/python3.8/site-packages/requests/adapters.py", line 439, in send
|
50
|
+
|
51
|
+
resp = conn.urlopen(
|
52
|
+
|
53
|
+
File "/opt/anaconda3/lib/python3.8/site-packages/urllib3/connectionpool.py", line 670, in urlopen
|
54
|
+
|
55
|
+
httplib_response = self._make_request(
|
56
|
+
|
57
|
+
File "/opt/anaconda3/lib/python3.8/site-packages/urllib3/connectionpool.py", line 392, in _make_request
|
58
|
+
|
59
|
+
conn.request(method, url, **httplib_request_kw)
|
60
|
+
|
61
|
+
File "/opt/anaconda3/lib/python3.8/http/client.py", line 1255, in request
|
62
|
+
|
63
|
+
self._send_request(method, url, body, headers, encode_chunked)
|
64
|
+
|
65
|
+
File "/opt/anaconda3/lib/python3.8/http/client.py", line 1296, in _send_request
|
66
|
+
|
67
|
+
self.putheader(hdr, value)
|
68
|
+
|
69
|
+
File "/opt/anaconda3/lib/python3.8/http/client.py", line 1228, in putheader
|
70
|
+
|
71
|
+
values[i] = one_value.encode('latin-1')
|
26
72
|
|
27
73
|
UnicodeEncodeError: 'latin-1' codec can't encode characters in position 120-125: ordinal not in range(256)
|
28
74
|
|