【发布时间】:2016-10-09 01:56:17
【问题描述】:
我想在特定时间段内挖掘两个关键字的推文。我目前有下面的代码,但我如何添加它只在两个日期之间我的推文? (10/03/2016 - 10/07/2016) 谢谢!
#Import the necessary methods from tweepy library
from tweepy.streaming import StreamListener
from tweepy import OAuthHandler
from tweepy import Stream
#Variables that contains the user credentials to access Twitter API
access_token = "ENTER YOUR ACCESS TOKEN"
access_token_secret = "ENTER YOUR ACCESS TOKEN SECRET"
consumer_key = "ENTER YOUR API KEY"
consumer_secret = "ENTER YOUR API SECRET"
#This is a basic listener that just prints received tweets to stdout.
class StdOutListener(StreamListener):
def on_data(self, data):
print data
return True
def on_error(self, status):
print status
if __name__ == '__main__':
#This handles Twitter authetification and the connection to Twitter Streaming API
l = StdOutListener()
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
stream = Stream(auth, l)
#This line filter Twitter Streams to capture data by the keywords: 'python', 'javascript', 'ruby'
stream.filter(track=['python', 'javascript', 'ruby'])
【问题讨论】:
-
@Efferalgan 为什么这是评论而不是答案?在已经给出答案的情况下回答这个问题感觉很糟糕! :|
-
@Loïc 我得到一个“琐碎的答案转换为评论”,我很难发布这样一个琐碎的答案。