質問編集履歴
1
コードを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,3 +3,51 @@
|
|
3
3
|
Python3 ・Tweepyを使ってTwitterのツイートを取得したいのですが、
|
4
4
|
|
5
5
|
ツイートの期間指定の方法がわかりません。教えてください。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
```python3
|
10
|
+
|
11
|
+
--------------------------------------------------------
|
12
|
+
|
13
|
+
#検索キーワード設定
|
14
|
+
|
15
|
+
q = keyword
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
#つぶやきを格納するリスト
|
20
|
+
|
21
|
+
tweets_data =[]
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
#カーソルを使用してデータ取得
|
26
|
+
|
27
|
+
for tweet in tweepy.Cursor(api.search, q=q, count=100,tweet_mode='extended').items(30000):
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
#つぶやき時間がUTCのため、JSTに変換 ※デバック用のコード
|
32
|
+
|
33
|
+
jsttime = tweet.created_at + datetime.timedelta(hours=9)
|
34
|
+
|
35
|
+
print(jsttime)
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
#Tweetdata取得
|
40
|
+
|
41
|
+
tweets_data.append([tweet.id,tweet.created_at,tweet.full_text.replace('\n','').replace(',',''),tweet.favorite_count,tweet.retweet_count])
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
#出力ファイル名
|
48
|
+
|
49
|
+
fname = r"'"+ dfile + "'"
|
50
|
+
|
51
|
+
fname = fname.replace("'","")
|
52
|
+
|
53
|
+
```
|