mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-16 06:30:52 +00:00
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))
|