mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-03-20 12:15:49 +08:00
11 lines
279 B
Python
11 lines
279 B
Python
# coding:UTF-8
|
|
import time
|
|
|
|
|
|
def timestamp_to_dt(timestamp, format_type="%Y-%m-%d %H:%M:%S"):
|
|
# 转换成localtime
|
|
time_local = time.localtime(timestamp)
|
|
# 转换成新的时间格式(2016-05-05 20:28:54)
|
|
dt = time.strftime(format_type, time_local)
|
|
return dt
|