1
0
mirror of synced 2024-11-28 07:50:51 +01:00
bemaniutils/bemani/client/common.py

10 lines
239 B
Python
Raw Normal View History

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)])