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

質問編集履歴

2

挿入できてると思います確認お願いします

2021/06/21 21:39

投稿

zakorin
zakorin

スコア0

title CHANGED
File without changes
body CHANGED
@@ -11,6 +11,31 @@
11
11
  ```
12
12
 
13
13
  ### 該当のソースコード
14
+ ```# Tweepy
15
+ # Copyright 2009-2020 Joshua Roesslein
16
+ # See LICENSE for details.
17
+
18
+ """
19
+ Tweepy Twitter API library
20
+ """
21
+ __version__ = '3.10.0'
22
+ __author__ = 'Joshua Roesslein'
23
+ __license__ = 'MIT'
24
+
25
+ from tweepy.api import API
26
+ from tweepy.auth import AppAuthHandler, OAuthHandler
27
+ from tweepy.cache import Cache, FileCache, MemoryCache
28
+ from tweepy.cursor import Cursor
29
+ from tweepy.error import RateLimitError, TweepError
30
+ from tweepy.models import DirectMessage, Friendship, ModelFactory, SavedSearch, SearchResults, Status, User
31
+ from tweepy.streaming import Stream, StreamListener
32
+
33
+ # Global, unauthenticated instance of API
34
+ api = API()
35
+
36
+ def debug(enable=True, level=1):
37
+ from six.moves.http_client import HTTPConnection
38
+ HTTPConnection.debuglevel = level
14
39
  # Tweepy
15
40
  # Copyright 2009-2020 Joshua Roesslein
16
41
  # See LICENSE for details.
@@ -36,6 +61,7 @@
36
61
  def debug(enable=True, level=1):
37
62
  from six.moves.http_client import HTTPConnection
38
63
  HTTPConnection.debuglevel = level
64
+ ```
39
65
  ```ここに言語名を入力
40
66
  ソースコードTweepy
41
67
  # Copyright 2009-2020 Joshua Roesslein

1

ソースコードに書き込みしておきました????‍♀️

2021/06/21 21:39

投稿

zakorin
zakorin

スコア0

title CHANGED
File without changes
body CHANGED
@@ -37,7 +37,31 @@
37
37
  from six.moves.http_client import HTTPConnection
38
38
  HTTPConnection.debuglevel = level
39
39
  ```ここに言語名を入力
40
- ソースコード
40
+ ソースコードTweepy
41
+ # Copyright 2009-2020 Joshua Roesslein
42
+ # See LICENSE for details.
43
+
44
+ """
45
+ Tweepy Twitter API library
46
+ """
47
+ __version__ = '3.10.0'
48
+ __author__ = 'Joshua Roesslein'
49
+ __license__ = 'MIT'
50
+
51
+ from tweepy.api import API
52
+ from tweepy.auth import AppAuthHandler, OAuthHandler
53
+ from tweepy.cache import Cache, FileCache, MemoryCache
54
+ from tweepy.cursor import Cursor
55
+ from tweepy.error import RateLimitError, TweepError
56
+ from tweepy.models import DirectMessage, Friendship, ModelFactory, SavedSearch, SearchResults, Status, User
57
+ from tweepy.streaming import Stream, StreamListener
58
+
59
+ # Global, unauthenticated instance of API
60
+ api = API()
61
+
62
+ def debug(enable=True, level=1):
63
+ from six.moves.http_client import HTTPConnection
64
+ HTTPConnection.debuglevel = level
41
65
  ```
42
66
 
43
67
  ### 試したこと