nonebot-plugin-acgnshow/nonebot_plugin_acgnshow/util.py

5 lines
163 B
Python
Raw Normal View History

2024-07-11 10:26:21 +00:00
from .config import BGIMAGE_PATH
import random
def choose_random_bgimage():
randomfile = random.choice(list(BGIMAGE_PATH.iterdir()))
return str(randomfile)