An open API service indexing awesome lists of open source software.

https://github.com/b3ta-blocker/password-generator

Simple Python script for generating random passwords. This repository contains a Python script that allows users to create secure passwords with a mix of letters, numbers, and symbols. Customize the length and composition of your passwords easily with this user-friendly tool.
https://github.com/b3ta-blocker/password-generator

lists python randomization user-interface

Last synced: about 2 months ago
JSON representation

Simple Python script for generating random passwords. This repository contains a Python script that allows users to create secure passwords with a mix of letters, numbers, and symbols. Customize the length and composition of your passwords easily with this user-friendly tool.

Awesome Lists containing this project

README

          

# Password Generator 🛠️🔐

This Python script generates secure passwords by combining random letters, symbols, and numbers. Customize the length and composition of your password to enhance security.

## Features 🚀

- **Random Generation:** Utilizes Python's `random` library to generate unpredictable passwords.
- **Customizable:** Choose the number of letters, symbols, and numbers for your password.
- **Easy to Use:** Simple prompts guide you through the process of creating a strong password.
- **Secure Combinations:** Combines uppercase and lowercase letters, numbers, and symbols for robust passwords.

## How to Use 🤖

1. Run the Python script in your terminal or IDE.
2. Enter the desired number of letters, symbols, and numbers when prompted.
3. The script will generate a secure password based on your specifications.
4. Copy and use the password for your accounts, ensuring better security.

## Example 🎲

```plaintext
Welcome to the Password Generator!

How many letters would you like in your password?
8

How many symbols would you like?
3

How many numbers would you like?
2

Your Password is : a%7EhD2ZiB
```