以下代码为我提供了有关每条状态消息的所有信息。
我只想发短信和该人的相应姓名。
如何过滤掉我不需要的属性?
for status in tweepy.Cursor(api.home_timeline).items(3):
print(json.dumps(status._json, indent=4))
答案 0 :(得分:0)
如果你看一下相对于home_timeline的Twitter documentation,你可以看到api返回的完整结构。
由于api返回字典列表,您可以轻松地以这种方式过滤每条推文
for tweet in tweepy.Cursor(api.home_timeline).items(3):
print(tweet.text)
print(tweet.user.name)