🔐

Password Generator

Python30 lines· Generate random, strong passwords from the command line.
Original project by @u749929 — view source on GitHub
Ready when you are
README· what to build

Password Generator

Generates a random password of a user-chosen length, drawn from lowercase and uppercase letters, digits and punctuation symbols.

Example

_____________________________________
| Welcome to this Password Generator |
-------------------------------------

how long do you want your password to be (minimum of 8 number)12

Your password is: gT$3@kLp!mZq
__________________________________________
| Thanks for using the Password Generator |
------------------------------------------

How to run on localhost

python main.py

Dependencies

Standard library only (random, string).

pwd.py· Python 3.x
22 lines
Console· terminal