Random Password Generator
A cryptographically random and secure password generator which relies only on the standard python library
Installation
python3 -m pip install busie-random-password-generator
Usage
from random_password_generator import generate_random_password
# password with default options (at least one upper, lower, special, and number character. 8 ≤ length ≤ 25)
password = generate_random_password()
# password of specified minimum length. must be between 8 and 25
password = generate_random_password(length=15)
# password without special characters
password = generate_random_password(special=False)
# password without capital letters
password = generate_random_password(uppercase=False)
#password without lowercase letters
password = generate_random_password(lowercase=False)
# password without numbers
password = generate_random_password(numbers=False)
Can also be run using python3 -m generate_random_password
Release files for busie-random-password-generator 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| busie_random_password_generator-0.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Release files / busie_random_password_generator-0.0.1-py3-none-any.whl
| Download URL | busie_random_password_generator-0.0.1-py3-none-any.whl |
|---|---|
| Size | 5.0 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7f2ca4af6ea6f56f33bbb9917e3df2f15b2528dd12b0afe2ac0cb97feedd3177
|
|
BLAKE2b-256 checksum How to use checksums |
8a3b4476af45271097db6d5d8aefe16c012157e5ffaf9cce6fcc12c53713bcd1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.3
|