使用 Twython 获取推文的时间戳
getting timestamp of tweets with Twython
我无法在任何地方找到此信息,即使在我看来这是一项非常简单的任务。但是,在 web/docs
上搜索答案时,我没有看到任何方法或线程
我正在使用 Twython 提取推文,我需要时间戳,甚至只需要发布日期。谁能帮帮我?
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'])
我无法在任何地方找到此信息,即使在我看来这是一项非常简单的任务。但是,在 web/docs
上搜索答案时,我没有看到任何方法或线程我正在使用 Twython 提取推文,我需要时间戳,甚至只需要发布日期。谁能帮帮我?
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'])