/Password_Generator

This script generates a random password ranging from length 8 to 50 inclusive

Primary LanguagePythonThe UnlicenseUnlicense

Password_Generator

This script generates a random password ranging from length 8 to 50 inclusive

Installation

Using git

git clone https://github.com/KPCOFGS/Password_Generator.git
cd Password_Generator

Parameters

pass_length Required. Length of the password, from 8 to 50 inclusive

Usage

python script.py PASS_LENGTH

Note

  • pass_length cannot go below 8 and cannot go above 50
  • The script guarantees no consecutive values, such as ABC, 123, abc
  • The script guarantees at least 1 number, symbol, uppcase letter and lowercase letter.
  • The script guarantees that no character is repeated three times in a row.
  • The script guarantees that no character will appear more than 25% of the time

License

This repository is licensed under the Unlicense