gpt4 book ai didi

python - Twitter 流数据中的时间格式

转载 作者:行者123 更新时间:2023-12-01 04:17:35 24 4
gpt4 key购买 nike

{"created_at":"Mon Dec 07 17:13:02 +0000 2015","id":673913118196543488,"id_str":"673913118196543488","text":"RT @MalhotraSaurabh: I think the

如何查找 5 分钟内发布的所有推文。

current_time - created_at < 5 , How to calculate ?

最佳答案

像这样的正则表达式应该匹配每条推文(假设它们始终包含在 {} 中)并捕获“created_at”中的日期字符串:

\{.*?"created_at":"([^"]*)".*?\}

然后您需要获取这些日期字符串并将它们解析为 DateTime 对象,如下所示:

my_date = datetime.strptime(my_date_string, "%a %b %d %H:%M:%S %z %Y")

然后您可以轻松地对该对象进行日期数学计算。我希望这有帮助!

关于python - Twitter 流数据中的时间格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34139705/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com