Metadata-Version: 1.0
Name: RandString
Version: 1.0.1
Summary: Python3 module for generating randomized strings
Home-page: http://pypi.python.org/pypi/RandString/
Author: Ryan Porterfield
Author-email: ryan@ryanporterfield.com
License: LICENSE.txt
Description: ==========
        RandString
        ==========
        
        RandString handles the generation of random string values. It's main purpose
        is for the passgen.py script which creates random, secure passwords. Typical
        usage often looks like this::
        
            #!/usr/bin/python3.2
        
            from randstring import StringGenerator
            import sys
        
            length = sys.argv[1]
            generator = StringGenerator()
            rand_str = generator.create_string( length, string_type='alphabetic' )
            ...
        
        
Platform: UNKNOWN
