A library to generate and manage passwords in your scripts.
Project description
A Password Generator Library
This library can help you to generate and manage passwords in your programs.
Installation
pip3 install psswd_manager
Usage
Geneate password
You can generate a password selecting the numbers of characters.
from password_gen import generate_password
generate_password(number_of_characters)
Save password
You can save the password in a dictionary with a key value (the object is saved as a value).
from password_gen import save_password
save_password(key_value)
Get password with key_value
You can get a saved password with key value.
from password_gen import get_password
get_password(key_value)
Get current password (recently created)
You can get the last password has been created if you didn't save it.
from password_gen import get_current_password
get_current_password()
Change password saved
You can change the password for an existing and saved password.
from password_gen import change_password
change_password(key, new_password)
Delete password saved
You can delete a saved password, with key value.
from password_gen import del_password
del_password(key)
Show all keys of the passwords saved
You can show all keys of the passwords saved.
from password_gen import show_keys
show_keys()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file psswd_manager-0.1.1.tar.gz.
File metadata
- Download URL: psswd_manager-0.1.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e3959776ef284ded5d0e546d1d910fa010363cb1f8e08933d1133805332396a
|
|
| MD5 |
4c915fd189e002bc15f203c03995d031
|
|
| BLAKE2b-256 |
2f18bd0b48533a9bdc2527473e01db58a03763ba19fa13aa526b893f1c58489e
|
File details
Details for the file psswd_manager-0.1.1-py3-none-any.whl.
File metadata
- Download URL: psswd_manager-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eaf8c9833c22165ac2da455cef3cf9a82f5b55b849557bab6afc4d638c001b53
|
|
| MD5 |
aa944c2aeb53674932ec47a8b7599cec
|
|
| BLAKE2b-256 |
79e738a2a6e278ba8e83ecb9eb33fbf111df76e8d076ed2de530a887aabd0a7d
|