2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pythonを使ってTwitterの投稿urlから投稿時間を計算しよう

Last updated at Posted at 2019-08-05

動機

前にこんな記事を書いて、ツイッターの投稿IDを取得してみました。
https://qiita.com/Tokyo/items/de206d3e3a6a1997f257

調べてみたらこんなのがありました。
面白そうだと思ったのですが、Rubyで書かれていて困りました。
https://qiita.com/Tokyo/items/de206d3e3a6a1997f257

なので解決してみました。

投稿URLから投稿時間がドンピシャで取れてびっくりしました。

コード

calculate.py
from datetime import datetime 

def caluculation(_id):
    unix_time = (_id >> 22) + 1288834974657) / 1000.0
    date_time = datetime.fromtimestamp(unix_time)
    return date_time

試してみた

IDは1106193069945176064でした。
スクリーンショット (353).png

成功しました~。
スクリーンショット (356).png

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?