Metadata-Version: 1.1
Name: password_gen
Version: 0.1.2
Summary: Generates memorable strong passwords.
Home-page: https://github.com/weirdestnerd/password-generator
Author: Olu Gbadebo
Author-email: odgbadeb@asu.edu
License: UNKNOWN
Description: # password-generator:
        Generates a memorable (by pattern), strong (long and mixed characters) passwords.
        
        # Install
        `pip install password_gen`
        
        # Documentation
        `run(dictionary(optional), digit_range(optional), character_range(optional))`: Generates password
        >`dictionary:{list} a list of preferred words`
        
        
        >`digit_range:{list} a list specifying the range of digits. Ex [2, 8] -> digits from 2 to 7`
        
        
        >`character_range:{list} a list specifying the range of ascii values of special characters. Ex [33, 36] -> '!, ~, #, $'`
        
        # Usage
        ``` python
        import password_gen as pg
        
        print( pg.run() )
        
        #  with parameters
        print( pg.run(['willy', 'wonka', 'and', 'the', 'chocolate', 'factory'], [3, 8], [35, 38]))
        # -> "the & wonka # choColate % willY"
        ```
        
Keywords: password-generator,passwords,generator
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Testing
