質問編集履歴
1
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,7 +14,8 @@
|
|
14
14
|
s = requests.Session()
|
15
15
|
s.proxies = {'https': 'https://127.0.0.1:8008'}
|
16
16
|
s.verify = False
|
17
|
-
s.get('https://example.com')
|
17
|
+
r = s.get('https://example.com')
|
18
|
+
print(r.content)
|
18
19
|
```
|
19
20
|
|
20
21
|
```
|