https://github.com/quantumwizard888/password-generator
Simple password generator written in Python.
https://github.com/quantumwizard888/password-generator
beginner-friendly password-generator python random random-generation studying-programming-languages
Last synced: about 1 year ago
JSON representation
Simple password generator written in Python.
- Host: GitHub
- URL: https://github.com/quantumwizard888/password-generator
- Owner: QuantumWizard888
- License: mit
- Created: 2021-06-30T13:20:48.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-30T13:25:17.000Z (almost 5 years ago)
- Last Synced: 2024-02-08T15:41:07.730Z (over 2 years ago)
- Topics: beginner-friendly, password-generator, python, random, random-generation, studying-programming-languages
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Password generator
## Description
Simple password generator written in Python.
## How to use?
### Generate password of particular length:
```
python3 pass_gen PASSWORD_LENGTH
```
### Generate list of N passwords of particular length:
```
python3 pass_gen PASSWORD_LENGTH QUANTITY_OF_PASSWORDS
```
`
PASSWORD_LENGTH - default value is 16, for security reasons consider values >=16 (20 is recommended)
`