Metadata-Version: 1.0
Name: random-password
Version: 1.0.1.dev2
Summary: Create random passwords easily
Home-page: https://github.com/chrisnorman7/random_password
Author: UNKNOWN
Author-email: UNKNOWN
License: MPL-2
Description-Content-Type: UNKNOWN
Description: # random_password
        Create a random password.
        
        ## Usage
        ```
        >>> from random_password import random_password
        >>> random_password()
        'Vs6ieNxR'
        >>> random_password(length=16)
        'BdeBxlOdSboH59zI'
        >>> random_password(characters='hello world')
        'rrelhodd'
        >>> random_password(length=4, characters=['hello', 'there', 'my', 'world'])
        'hellomytherethere'
        ```
        
        
Platform: UNKNOWN
