teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

修正

2018/09/01 07:15

投稿

daiki002
daiki002

スコア68

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
  ```