用Twython获取推文的时间戳

时间:2016-01-09 14:19:03

标签: api twitter timestamp tweets twython

我无法在任何地方找到这些信息,即使在我看来这是一项非常简单的任务。但是,当我在web / docs上抓取答案时,没有任何方法和线程出现在我身上

我正在使用Twython来提取推文,我需要时间戳,甚至是发布时间。任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:3)

所有Twython都会包裹Twitter API, so look at that documentation.

以下是一个例子:

from twython import Twython
twitter = Twython()
timeline = twitter.getUserTimeline(screen_name="handle")
for tweet in timeline:
    print(tweet['created_at'])