Tweepy如何将Search API Status对象转换为String

时间:2014-10-26 10:20:21

标签: tweepy

我想将Tweepy搜索结果存储到.txt文件中。

但请求的结果似乎是类型,如何将此类型转换为字符串类型?

for tweet in tweepy.Cursor(api.search,q=query,count=100,until=until,lang="en",result_type="mixed",include_entities=True).items():
        print type(tweet)

1 个答案:

答案 0 :(得分:1)

这似乎是一个非常简单的问题。这就是答案:

str(tweet)