Binance API 时间值是指...?

Binance API time value refers to...?

我使用 client.get_historical_klines(pair_to_trade, Client.KLINE_INTERVAL_1DAY, date_0, date_1)Binance API 从 date_0 到 date_1 获取烛台数据。根据这个site,列表中第一个和第7个数据,指的是开盘时间和收盘时间。例如 我得到 2021 年 8 月 30 日的以下信息:开盘时间1630281600000,以及收盘时间1630285199999(开一个天间隔)。

我的问题是,这些数字是多少。有没有办法将它们转换为可读的实际日期和时间? (即 (2021,8,30,0,0) 2021 年 8 月 30 日,00:00)

那些是unix timestamps, you can find how to deal with the timestamp on this question