1
0
mirror of synced 2024-11-27 23:50:47 +01:00
bemaniutils/bemani/client/common.py

10 lines
241 B
Python

import random
def random_hex_string(length: int, caps: bool = False) -> str:
if caps:
string = "0123456789ABCDEF"
else:
string = "0123456789abcdef"
return "".join([random.choice(string) for x in range(length)])