An open API service indexing awesome lists of open source software.

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

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/script

Command 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 string

Used 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/')