Skip to main content

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


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)

Uploaded Source

Built Distribution

ipwg-0.1.0-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page