barcode-flask/test.py

8 lines
128 B
Python
Raw Normal View History

2024-02-24 23:02:20 +01:00
from os import urandom
from base64 import b64encode
rnd=urandom(16)
rnd_bytes=b64encode(rnd).decode('utf-8')
print(rnd_bytes)