Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 531 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 531 Bytes

PasswordGenerator

Strong Password Generator

Running script

  • python3 password_generator.py will generate a password with 20 characters containing lowercase and uppercase letters, numbers and common symbols @#$%_-.

Script options

  • -h, --help show this help message
  • --length LENGTH, -l LENGTH Set password length. Default is 20.
  • --lowercase, -lc Remove lowercase characters.
  • --uppercase, -uc Remove uppercase characters.
  • --numbers, -n Remove numbers.
  • --punctuation, -pInclude all punctuation.