Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/honza/pypass
- Owner: honza
- Created: 2010-12-15T00:29:05.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2010-12-15T00:36:32.000Z (almost 14 years ago)
- Last Synced: 2024-04-16T01:44:55.712Z (7 months ago)
- Language: Python
- Homepage:
- Size: 89.8 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.