使用 json 格式的 tweepy 保存推文
Saving tweets using tweepy in json format
我们如何使用 json 格式的 tweepy 收集推文并保存到本地磁盘。我需要在 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)`
如果您已经导入了 json
.
,您可以尝试将数据保存为 list
并将其转储到 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
我们如何使用 json 格式的 tweepy 收集推文并保存到本地磁盘。我需要在 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)`
如果您已经导入了 json
.
list
并将其转储到 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