Tweepy实体Appengine

时间:2011-11-15 14:21:12

标签: google-app-engine twitter entities tweepy

我正在使用Twitter客户端,我正在使用tweepy,但有了它,我无法在user_timeline中获取实体。我如何获得实体? 有人更新了Tweepy for AppEngine Library吗?

2 个答案:

答案 0 :(得分:2)

来自tweepy wiki

# Iterate through the first 200 statuses in the friends timeline
for status in tweepy.Cursor(api.friends_timeline).items(200):
    # Process the status here
    process_status(status)

答案 1 :(得分:1)

您需要提供include_entities = True

api.user_timeline(include_entities = True).

默认情况下未设置为true的原因是因为稍后将实体添加到Twitter API中,因此稍后将其添加到Tweepy中。