Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.59 KB

File metadata and controls

49 lines (30 loc) · 1.59 KB

Password Generator

This repository contains a Python script (passGene.py) that generates strong and secure random passwords. The script uses the secrets module in Python to ensure that the generated passwords are cryptographically secure and suitable for protecting sensitive information.

Features

  • Generates random passwords of specified length.
  • Supports customizing the password with options for including uppercase letters, lowercase letters, digits, and special characters.
  • Ensures that the generated passwords are strong and difficult to guess.
  • Easy-to-use command-line interface.

Requirements

  • Python 3.x

How to Use

  1. Clone the repository to your local machine:

    git clone https://github.com/ankytastic/Password_Generator.git
    
  2. Navigate to the repository's directory:

    cd Password_Generator
    
  3. Run the passGene.py script:

    python passGene.py
    

    Then the user will be prompted to enter the length of the password required.

    This will generate a random password with a length of specified characters, including uppercase letters, lowercase letters, digits, and special characters.

License

This project is licensed under the MIT License.

Feel free to use, modify, and distribute this script as per the terms of the license.

Contribution

If you find any issues or have ideas to improve the password generator, feel free to create a pull request or open an issue in the repository.

Let's make password generation easier and more secure together!