diff options
author | 2025-02-13 14:13:49 +0530 | |
---|---|---|
committer | 2025-02-13 14:13:49 +0530 | |
commit | 8a2e1006b3b272126332aa064f3ad95387129544 (patch) | |
tree | 944c80ac612a65980d94a54ba11b6c7102037ecf /.local/bin/randompass | |
parent | dcbb16d8b08ff5956abef5e6478b59df2e93ad35 (diff) | |
download | dotfiles-master.tar.gz dotfiles-master.tar.bz2 dotfiles-master.zip |
Diffstat (limited to '.local/bin/randompass')
-rwxr-xr-x | .local/bin/randompass | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/.local/bin/randompass b/.local/bin/randompass new file mode 100755 index 0000000..fca095d --- /dev/null +++ b/.local/bin/randompass @@ -0,0 +1,31 @@ +#! /usr/bin/python +import string +import random + + +## characters to generate password from +characters = list(string.ascii_letters + string.digits + "!@#$%^&*()") + +def generate_random_password(): + ## length of password from the user + length = int(input("Enter password length: ")) + + ## shuffling the characters + random.shuffle(characters) + + ## picking random characters from the list + password = [] + for i in range(length): + password.append(random.choice(characters)) + + ## shuffling the resultant password + random.shuffle(password) + + ## converting the list to string + ## printing the list + print("".join(password)) + + + +## invoking the function +generate_random_password() |