Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 590 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 590 Bytes

Password Generator

Simple password generator Cli with Python.

Usage

# Print help command
python password_generator.py -h
# Generate password with 20 lowercase letters
python password_generator.py -l 20 -a
python password_generator.py -l 20 --alpha
# Generate password with 20 lowercase letters and numbers
python password_generator.py -l 10 -a -n
python password_generator.py -l 10 -a --numbers
# Generate 10 passwords with 10 characters. include all possible character
python password_generator.py -l 10 -a -A -n -s -m 10