Skip to content

A Python script for generating strong passwords with customizable length.

License

Notifications You must be signed in to change notification settings

iNoles/Password-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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