mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-24 03:43:42 -08:00
7 lines
230 B
Python
7 lines
230 B
Python
import random
|
|
|
|
|
|
# Return a random string of 6 letter/digits.
|
|
def random_token(length=6) -> str:
|
|
return "".join(
|
|
[random.choice('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') for x in range(length)])
|