我在Python中使用'twwey'库来查询来自Twitter的推文。我使用的是一个简单的查询:
query = "google"
f = open('output.txt', 'w')
for tweet in tweepy.Cursor(api.search,
query,
count=100,
result_type="recent",
include_entities=True,
lang="en").items():
f.write(str(tweet.created_at) +'\n')
f.write(tweet.text.encode('utf-8') + '\n')
#print tweet.created_at, tweet.text
我注意到,这个查询需要花费大量时间来生成输出,最多25分钟。知道如何更快地做到这一点吗?
由于