Metadata-Version: 2.1
Name: ipwg
Version: 0.1.0
Summary: Password Generator
Home-page: https://github.com/en0/ipwg
Author: Ian Laird
Author-email: irlaird@gmail.com
License: MIT
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
        
        ```bash
        pip install ipwg
        ```
        
        For commandline use, you are all set. just run:
        
        ```bash
        # 10 is the number of characters.
        ipwg 10
        
        # See all the options
        ipwg -h
        ```
        
        For use in your own code:
        
        ```python
        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)
        ```
        
Keywords: password
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
