pywd

Command-line Python password generator


License
MIT
Install
pip install pywd==0.0.1

Documentation

Pywd

Pywd (pronounced py-woo-dee) is a command-line application written in Python. The application generates a password of the desired length and includes a combination of letters (optionally uppercase), numbers, and symbols. The module can also be used to generate passwords from within another application such as Django web application.

Install

You can use pip to install this tool.

pip3 install pywd

Usage

From the commandline

$ pywd --length=10 --symbol --numbers --letters 
#09;54~4@j
$ pywd --length=10 --symbol --letters 
gvg/ozxyef
$ pywd --length=10 --letters --uppercase 
QWPWTCAPXV 

From another module

from pywd.pywd import create_password
create_password(10, True, False, True, False) #)_(`9**53:
create_password(10, False, True, True, False) #]c;$cj)sbv 
create_password(10, False, True, False, True) #hmHoQkFFWQ