mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-acgnshow.git
synced 2025-09-06 12:16:25 +00:00
✨v0.1.4.2,在展览列表中显示出场嘉宾(数据不全?),展览开始时间精确到秒
This commit is contained in:
@ -1,6 +1,11 @@
|
||||
from .config import BGIMAGE_PATH
|
||||
import random
|
||||
import datetime
|
||||
def choose_random_bgimage():
|
||||
randomfile = random.choice(list(BGIMAGE_PATH.iterdir()))
|
||||
randomurl = randomfile.as_uri()
|
||||
return randomurl
|
||||
return randomurl
|
||||
def convert_timestamp(timestamp):
|
||||
obj = datetime.datetime.fromtimestamp(timestamp)
|
||||
formatted_time = obj.strftime('%Y-%m-%d %H:%M:%S')
|
||||
return formatted_time
|
||||
|
Reference in New Issue
Block a user