forked from loafle/openapi-generator-original
6 lines
128 B
Python
6 lines
128 B
Python
import random
|
|
|
|
def id_gen(bits=32):
|
|
""" Returns a n-bit randomly generated int """
|
|
return int(random.getrandbits(bits))
|