==========
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' )
    ...

