mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 13:56:01 +01:00
6 lines
165 B
Python
Executable File
6 lines
165 B
Python
Executable File
import secrets
|
|
import string
|
|
|
|
alphabet = string.ascii_letters + string.digits
|
|
the_password = ''.join(secrets.choice(alphabet) for _ in range(14))
|
|
print(the_password) |