我们如何使用tweepy以json格式收集推文并将其保存到本地磁盘。我需要在Solr中输入json文件进行索引和标记化。这是我正在使用的代码:
`
import json
import tweepy
from tweepy import OAuthHandler
ckey=""
csecret=""
atoken=""
asecret=""
auth = OAuthHandler(ckey, csecret)
auth.set_access_token(atoken, asecret)
api = tweepy.API(auth)
data1 = api.search(q='politics', count = 1)`
答案 0 :(得分:0)
假设您已经导入了list
,则可以尝试将数据另存为json
并将其转储到json
文件中。
z = [x for x in data1]
with open('your_data.json', 'w') as out:
json.dump(z,out)
或者,您可以将z = [x for x in data1]
编写为:
z = list()
for x in data1:
z.append(x)
/ ogs