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.
- Host: GitHub
- URL: https://github.com/b3ta-blocker/password-generator
- Owner: B3TA-BLOCKER
- Created: 2023-09-07T05:13:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-02T18:40:51.000Z (over 1 year ago)
- Last Synced: 2024-12-29T06:16:14.862Z (about 1 year ago)
- Topics: lists, python, randomization, user-interface
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```