Metadata-Version: 2.1
Name: genpasswd-everdrone
Version: 2.0.2
Summary: Password Generator
Home-page: https://github.com/everdrone/genpasswd2
Author: Giorgio Tropiano
Author-email: giorgiotropiano@gmail.com
License: MIT
Description: # Password generator
        
        ## Installation
        
        ```sh
        pip3 install genpasswd-everdrone
        ```
        
        ## Usage
        
        ```
        Usage: genpasswd [options]
        
        Options:
          -h, --help            show this help message and exit
          -c SETS, --count=SETS
                                the count of the strings between separators
          -l LENGTH, --str-length=LENGTH
                                the length of characters between separators
          -d NUMS, --digits=NUMS
                                the amount of digits in the password
          -u CAPS, --uppercase=CAPS
                                the amount of uppercase letters in the password
          -s CHAR, --separator=CHAR
                                the separator character
          -n ITER, --number=ITER
                                executes the command N times
          -v, --version         print the version number and quit
        ```
        
        Generate 3 passwords
        
        ```
        $ genpasswd -n 3
        ctwewg-ebvlsl-a0Qqre
        gkhspu-4Wmplw-izhcaq
        fctbnf-qiggnR-bns5wl
        ```
        
        Generate a password with 4 sets of 5 characters
        
        ```
        $ genpasswd -c 4 -l 5
        jwvq9-vqejL-yzlmv-egfmb
        ```
        
        Generate a password with 3 digits and 3 uppercase letters
        
        ```
        $ genpasswd -d 3 -u 3
        ipjsGc-aE5mnm-wd5pM0
        ```
        
        Generate a password using the underscore separator
        
        ```
        $ genpasswd -s _
        qdtclt_lao3Du_tuvsqu
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7.5
Description-Content-Type: text/markdown
