mirror of
https://github.com/tgbot-collection/YYeTsBot.git
synced 2025-11-25 19:37:34 +08:00
15 lines
231 B
Python
15 lines
231 B
Python
#!/usr/local/bin/python3
|
|
# coding: utf-8
|
|
|
|
# YYeTsBot - utils.py
|
|
# 6/16/21 21:42
|
|
#
|
|
|
|
__author__ = "Benny <benny.think@gmail.com>"
|
|
|
|
import time
|
|
|
|
|
|
def ts_date(ts=None):
|
|
return time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(ts))
|