Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/honza/pypass

python-based random password generator
https://github.com/honza/pypass

Last synced: about 5 hours ago
JSON representation

python-based random password generator

Awesome Lists containing this project

README

        

# PyPass - Random Password Generator

PyPass is a dead-simple password generator. You can specify the length of the
password, and the number of passwords you want the script to generate.

It uses lowercase and uppercase letters, numbers, and punctuation. No character
is repeated in a single password.

### Usage

Generate an 8-character-long password:

$ python pypass.py

Generate a 20-character-long password:

$ python pypass.py 20

Generate a hundred 12-character-long passwords:

$ python pypass.py 12 100

Really simple. Of course, you can import the module into you application and
use it programmatically:

from pypass import PyPass
pypass = Pypass()
pypass.run()

This script was intended as a learning exercise.