Password Generator
Project description
Ian's Password Generator
ipwg is a password generator that can produce passwords of any length and with required types of characters.
A commandline tool is also available for all your commandline task needs.
Quick Start
pip install ipwg
For commandline use, you are all set. just run:
# 10 is the number of characters. ipwg 10 # See all the options ipwg -h
For use in your own code:
from ipwg import Generator # You can customize your charsets globally Generator.specials = '!@#$' generator = Generator(enable_all=True) generator.specials_count = 1 # generate a 10 character long password with # at least 1 of !@#$ pwd = generator.create_password(10)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ipwg-0.1.0.tar.gz
(3.6 kB
view hashes)
Built Distribution
ipwg-0.1.0-py3-none-any.whl
(4.1 kB
view hashes)