mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
20 lines
425 B
Markdown
20 lines
425 B
Markdown
|
# Random Password Generator
|
||
|
This program randomly generates a secure password using a mix of letters, both caps on and off, numbers, and punctuation, then outputs the results and saves them as a text document.
|
||
|
|
||
|
# Requirements
|
||
|
|
||
|
Python 3 and higher or Python 2 and higher
|
||
|
|
||
|
# Usage
|
||
|
|
||
|
For Windows users:
|
||
|
|
||
|
```bash
|
||
|
$ python PasswordGenerator.py
|
||
|
```
|
||
|
|
||
|
For Mac/Linux/Unix users:
|
||
|
|
||
|
```bash
|
||
|
$ ./PasswordGenerator.py
|
||
|
```
|