質問編集履歴
5
Traceback (most recent call last): File "test_tweepy.py", line 1, in <module> from tweepy.auth
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,6 +46,16 @@
|
|
46
46
|
|
47
47
|
```
|
48
48
|
|
49
|
+
エラー:
|
50
|
+
|
51
|
+
Traceback (most recent call last):
|
52
|
+
|
53
|
+
File "test_tweepy.py", line 1, in <module>
|
54
|
+
|
55
|
+
from tweepy.auth import OAuthHandler
|
56
|
+
|
57
|
+
ModuleNotFoundError: No module named 'tweepy.auth'
|
58
|
+
|
49
59
|
|
50
60
|
|
51
61
|
スクリプトをtweepy.pyという名前で保存していません
|
4
スクリプトをtweepy.pyという名前で保存していません
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,6 +46,10 @@
|
|
46
46
|
|
47
47
|
```
|
48
48
|
|
49
|
+
|
50
|
+
|
51
|
+
スクリプトをtweepy.pyという名前で保存していません
|
52
|
+
|
49
53
|
どうしたらOAuthHandlerが利用できるようになるでしょうか?
|
50
54
|
|
51
55
|
|
3
エラー全文追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,15 @@
|
|
20
20
|
|
21
21
|
エラー:
|
22
22
|
|
23
|
+
Traceback (most recent call last):
|
24
|
+
|
25
|
+
File "test_tweepy.py", line 8, in <module>
|
26
|
+
|
27
|
+
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
|
28
|
+
|
23
29
|
AttributeError: module 'tweepy' has no attribute 'OAuthHandler'
|
30
|
+
|
31
|
+
|
24
32
|
|
25
33
|
|
26
34
|
|
2
エラー文の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -17,6 +17,10 @@
|
|
17
17
|
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
|
18
18
|
|
19
19
|
```
|
20
|
+
|
21
|
+
エラー:
|
22
|
+
|
23
|
+
AttributeError: module 'tweepy' has no attribute 'OAuthHandler'
|
20
24
|
|
21
25
|
|
22
26
|
|
1
カテゴリの追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|