5 lines
107 B
Python
5 lines
107 B
Python
# generowanie danych jako secrets
|
|
import secrets as ss
|
|
|
|
print(ss.token_urlsafe(20))
|
|
print(ss.token_hex(20)) |