使用Tweepy确定帐户的年龄

时间:2015-03-13 22:39:23

标签: python date twitter tweepy

我希望将Tweepy用于一个小项目。我希望能够编写一些返回给定Twitter帐户年龄的代码。我能想到的最好的方法是从第一页返回所有推文,找到最早的推文并检查它上面的日期/时间戳。

有点讨厌,但我想知道是否有人能想到一种更简单或更清洁的方法来实现这一目标?

2 个答案:

答案 0 :(得分:1)

get_user方法返回一个包含created_at字段的用户对象。

检查https://dev.twitter.com/overview/api/users

答案 1 :(得分:1)

Your solution

import tweepy



CONSUMER_KEY = 'xxxxxxxxxxxxxxxx'
CONSUMER_SECRET = 'xxxxxxxxxxxxxxxx'
ACCESS_TOKEN = 'xxxxxxxxxxxxxxxx'
ACCESS_TOKEN_SECRET = 'xxxxxxxxx'
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
api = tweepy.API(auth)
user = api.get_user('Obama')
ageTwitterAccount = user.created_at

打印ageTwitterAccount!