Python-Twitter API GetLocation

时间:2013-02-28 17:10:46

标签: python twitter

我正在尝试使用python-twitter API(http://code.google.com/p/python-twitter/)从Twitter个人资料中获取位置信息。文档(http://static.unto.net/python-twitter/0.5/doc/twitter.html)声明存在GetLocation调用,但我似乎无法使其工作。

2 个答案:

答案 0 :(得分:2)

使用Twython Library,您可以获取具有特定用户名的用户的位置信息,如下所示:

from twython import Twython
twitter = Twython(APP_KEY, APP_SECRET,OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
print twitter.show_user(screen_name=USER_NAME)["location"]

其他图书馆也应该类似。

我希望这会有所帮助。

答案 1 :(得分:0)

python-twitter最高版本为1.9,你使用的是古代文档!由于python-twitter是Twitter API的精确映射,如果您想获取位置信息,请参阅Twitter docs