Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.45 KB

File metadata and controls

44 lines (27 loc) · 1.45 KB

Password Generator

The Password Generator is a simple Python program that allows you to generate strong and random passwords with specified complexity and length. This program runs in the command-line interface (CLI) and provides a user-friendly way to create passwords.

Features

  • Generate random passwords with various complexity levels (low, medium, high).
  • Choose the desired length of the password.
  • Center-align the generated password for a clear display.

Getting Started

  1. Clone this repository to your local machine.
git clone https://github.com/[username]/password-generator.git
cd password-generator
  1. Run the application.
python main.py
  1. Follow the on-screen instructions to specify the length and complexity of the password.

  2. The generated password will be displayed in the center of the screen.

  3. You can choose to generate another password or exit the program.

Dependencies

  • Python 3.x

Contributing

Contributions are welcome! If you find any issues or have ideas for improvements, please open an issue or create a pull request.

Acknowledgments

  • Python for providing a powerful and versatile programming language.
  • os module for clearing the screen and getting terminal size.
  • random and string modules for password generation.