Metadata-Version: 1.1
Name: random_name
Version: 0.1.0
Summary: Simple tool for generating random names.
Home-page: https://github.com/phobologic/random_name
Author: Michael Barrett
Author-email: loki77@gmail.com
License: New BSD license
Description: ============
        random_name
        ============
        
        A simple library for generating random names, similar to the docker random
        name generator found `here <https://github.com/docker/docker/blob/master/pkg/namesgenerator/names-generator.go>`_.
        
        .. code:: python
        
            >>> import random_name
            >>> random_name.generate_name()
            'snazzy-heliotrope-stingray'
            >>> random_name.generate(1)
            ['skanky-orange-bordeaux']
            >>> random_name.generate(10)
            ['woolly-saffron-squirrel', 'slaphappy-black-indri', 'dorky-smalt-cichlid', 'crabby-cobalt-bullfrog', 'lumpy-puce-stoat', 'snappy-magenta-dormouse', 'woolly-apricot-okapi', 'snippy-coral-woodpecker', 'lanky-cream-foxhound', 'queasy-alizarin-moth']
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 3 - Alpha
