6 lines
73 B
Python
6 lines
73 B
Python
import secrets
|
|
|
|
|
|
def random_token():
|
|
return secrets.token_urlsafe(8)
|