A cryptographically random and secure random password generator
Project description
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
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
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 busie_random_password_generator-0.0.1-py3-none-any.whl.
File metadata
- Download URL: busie_random_password_generator-0.0.1-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using 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
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f2ca4af6ea6f56f33bbb9917e3df2f15b2528dd12b0afe2ac0cb97feedd3177
|
|
| MD5 |
9219ff21f67c6de71cbb3cd08d3eced9
|
|
| BLAKE2b-256 |
8a3b4476af45271097db6d5d8aefe16c012157e5ffaf9cce6fcc12c53713bcd1
|