https://github.com/brianobot/password_generator
Pure Python Password Generator
https://github.com/brianobot/password_generator
Last synced: 3 months ago
JSON representation
Pure Python Password Generator
- Host: GitHub
- URL: https://github.com/brianobot/password_generator
- Owner: brianobot
- Created: 2023-01-14T16:16:55.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-04T08:02:47.000Z (over 1 year ago)
- Last Synced: 2025-01-21T07:12:57.299Z (5 months ago)
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Password Generator
## Description
Pure python password generator to generate incredibly secure and randomized passwords.## Usage
The script has to be used as standalone script with command line arguments or
can be imported or called by another python program/scriptCommand Line Usage
- `python password_generator.py` # generate a password of with module default length string
- `python password_generator.py 8` # generate a password of 8-length string
- `python password_generator.py 64` # generate a password of 64-length stringUsed within a Python Program
```
...
from password_generator import generate_password...
password = generate_password()
password = generate_password(8)
password = generate_password(64)
```## Maintainer
- [Brian Obot]('https://www.github.com/brianobot/')