Metadata-Version: 1.1
Name: python-ninethreesix
Version: 0.1.1
Summary: a password generator inspired by http://xkcd.com/936/
Home-page: https://github.com/bradmontgomery/python-ninethreesix
Author: Brad Montgomery
Author-email: brad@bradmontgomery.net
License: MIT
Description: ninethreesix
        ============
        
        |version| |license|
        
        a password generator
        
        
        usage
        -----
        
        From python::
        
            >>> from ninethreesix import Password
            >>> p = Password(num_words=3, min_len=3, max_len=6)
            >>> p.as_string()
            'whelp-word-out'
        
        Or run the module directly::
        
            $ python -m ninethreesix.password
        
            show-sine-Troy
        
        
        what's with the name?
        ---------------------
        
        See: `http://xckd.com/936/ <http://xckd.com/936/>`_
        
        
        license
        -------
        
        The code here is available under the MIT license.
        
        
        word list
        ---------
        
        The bundled word list comes from the Moby Word list by Grady Ward, which is
        listed in the public domain.
        
        The bundled word file is COMMON.TXT, which is:
        
            74,550 common dictionary words (common.txt)
            A list of words in common with two or more published dictionaries.
            This gives the developer of a custom spelling checker a good
            beginning pool of relatively common words.
        
        For the original sources, see:
        `http://www.gutenberg.org/ebooks/3201 <(http://www.gutenberg.org/ebooks/3201>`_
        
        .. |version| image:: http://img.shields.io/pypi/v/python-ninethreesix.svg?style=flat-square
            :alt: Current Release
            :target: https://pypi.python.org/pypi/python-ninethreesix/
        
        .. |license| image:: http://img.shields.io/pypi/l/python-ninethreesix.svg?style=flat-square
            :alt: License
            :target: https://pypi.python.org/pypi/python-ninethreesix/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
