/Password-Generator

A Python script for generating strong passwords with customizable length.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Strong Password Generator

This Python script generates strong passwords with customizable lengths. It utilizes a combination of uppercase letters, lowercase letters, digits, and special characters to create secure passwords.

Usage

  1. Clone the repository to your local machine:

    git clone https://github.com/iNoles/Password-Generator.git
  2. Navigate to the directory:

    cd Password-Generator
  3. Run the script:

    python password_generator.py
  4. You will be prompted to enter the desired length of the password. If you don't provide any input, a password of length 12 will be generated by default.

  5. Once the password is generated, it will be displayed on the screen.

Example

$ python password_generator.py
Enter the length of the password (default is 12):
Generated Password: sN@2zGvW9#F8

Requirements

  • Python 3.x