import secrets from core.builtins import Bot from core.component import on_command r = on_command('random', alias={'rand': 'random', 'rng': 'random'}, developers=['Dianliang233'], desc='随机数生成器(密码学安全)', ) @r.handle('number {生成区间内的随机整数}', ) async def _(msg: Bot.MessageSession): _min = msg.parsed_msg[''] _max = msg.parsed_msg[''] random = secrets.randbelow(int(_max) - int(_min) + 1) + int(_min) await msg.finish('' + str(random)) @r.handle('choice ... {从集合中选择元素}', ) async def _(msg: Bot.MessageSession): choices = msg.parsed_msg['...'] await msg.finish(secrets.choice(choices))