Skip to content

Files

Latest commit

5ee83b2 · Feb 15, 2021

History

History
16 lines (10 loc) · 414 Bytes

File metadata and controls

16 lines (10 loc) · 414 Bytes

Random password generator

A Python script to generate a random password with custom size. It only uses the standard library, so you don't need to install anything.

image

Usage example

Generate a password with size 10: $python3 password_generator.py 10

Generate a password with size 30: $python3 password_generator.py 30

image