回答編集履歴

3

修正

2020/11/01 14:31

投稿

sfdust
sfdust

スコア1135

test CHANGED
@@ -1,8 +1,4 @@
1
- LINE Notifyの公式ドキュメント(https://notify-bot.line.me/doc/ja/)にまさにそのまま書いてあんですが・・・
1
+ LINE Notifyの公式ドキュメント(https://notify-bot.line.me/doc/ja/)に
2
-
3
-
4
-
5
- https://notify-bot.line.me/doc/ja/ より引用
6
2
 
7
3
 
8
4
 
@@ -32,9 +28,11 @@
32
28
 
33
29
  ```
34
30
 
31
+ とのことです。
35
32
 
36
33
 
34
+
37
- requestsにおいて、response header は、レスポンスの`headers`属性に辞書形式で格納されているので、それを参照するだけです。
35
+ requestsにおいて、response header は、レスポンスの`headers`属性に辞書形式で格納されているので、それを参照すればよいです。
38
36
 
39
37
  (requestsの公式ドキュメント: https://requests-docs-ja.readthedocs.io/en/latest/user/quickstart/#id9)
40
38
 
@@ -47,7 +45,3 @@
47
45
  print(ratelimit)
48
46
 
49
47
  ```
50
-
51
-
52
-
53
- 迷ったらまず公式ドキュメントを読みましょう。

2

修正

2020/11/01 14:31

投稿

sfdust
sfdust

スコア1135

test CHANGED
@@ -34,7 +34,7 @@
34
34
 
35
35
 
36
36
 
37
- response header は、レスポンスの`header`属性に辞書形式で格納されているので、それを参照するだけです。
37
+ requestsにおいて、response header は、レスポンスの`headers`属性に辞書形式で格納されているので、それを参照するだけです。
38
38
 
39
39
  (requestsの公式ドキュメント: https://requests-docs-ja.readthedocs.io/en/latest/user/quickstart/#id9)
40
40
 

1

修正

2020/11/01 14:26

投稿

sfdust
sfdust

スコア1135

test CHANGED
@@ -36,7 +36,7 @@
36
36
 
37
37
  response header は、レスポンスの`header`属性に辞書形式で格納されているので、それを参照するだけです。
38
38
 
39
-
39
+ (requestsの公式ドキュメント: https://requests-docs-ja.readthedocs.io/en/latest/user/quickstart/#id9)
40
40
 
41
41
  ```
42
42
 
@@ -47,3 +47,7 @@
47
47
  print(ratelimit)
48
48
 
49
49
  ```
50
+
51
+
52
+
53
+ 迷ったらまず公式ドキュメントを読みましょう。