Tweepy API:如何从状态搜索结果对象中获取用户ID?

7

我正在尝试编写一个关注Twitter用户的脚本。 tweepy API似乎非常好用,但是我遇到了一些与用户ID映射到其屏幕名称相关的不直观行为。

In [1]: import tweepy
In [2]: api = tweepy.API()

# get an arbitrary tweet
In [3]: tweet = api.search("anything")[0]

In [5]: tweet.text
Out[5]: 'Currently mourning the [potential] loss of around 500 pictures I took while in Oklahoma. Anyone know anything about Canon Rebels?'

# who tweeted it?
In [6]: tweet.from_user
Out[6]: 'helloregan'

# get the tweeters id
In [7]: tweet.from_user_id
Out[7]: 101962792

# i'm paranoid. just want to make sure its right.
In [8]: helloregan = api.get_user(user_id=tweet.from_user_id)           

# yep, same id.
In [9]: helloregan.id
Out[9]: 101962792

# lets check to see if its the same screen name? no. different person.
In [10]: helloregan.screen_name
Out[10]: 'kikiiputh'

什么情况?
1个回答

7

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接