swdata/print_game_time.py
2019-01-27 22:05:33 +08:00

9 lines
292 B
Python

import json
import time
from island.match import Match
from island.matches import Matches
ms = Matches.from_profile_expr(lambda r: True)
for m in ms.data:
ts = m.query('game', 'created').first()['info']['next_start']
print(time.strftime("%Y/%m/%d %H:%M:%S", time.localtime(int(ts))))