Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 616 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 616 Bytes

Random Password Generator CLI using Click and nltk

This is a CLI which has options to generate random password based on length, special characters, numbers, uppercase, lowercase letters etc And it can also fix a password to make it more complex and secure without losing its originality.

Installation

Install with pip or pip3 (depending upon the operating system)

for windows

  pip install -r requirements.txt
  cd RandomPasswordGeneratorCLI
  python randPass.py [options]

for mac

  pip3 install -r requirements.txt
  cd RandomPasswordGeneratorCLI
  python3 randPass.py [options]