Skip to content

captainsafia/pywd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Command-line password generator written in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages