Metadata-Version: 1.1
Name: randomthings
Version: 1.2.1.6
Summary: Generate Random Things
Home-page: https://bitbucket.org/kajigga/py_randomthings
Author: kajigga
Author-email: kajigga@gmail.com
License: MIT
Description: .. role:: bash(code)
           :language: bash
        
        I needed a way to generate random text strings for a variety of things. This module was
        created to fit the bill. You might find it useful as well.
        
        Installation
        ------------
        Install this module with the standard :bash:`pip install randomthings`.
        
        Usage
        -----
        This module is a standard python module. Here are some examples of random things you can
        generate with it.
        
        import random_things
        
        .. code:: python 
        
          >>> random_things.random_course()
          'Hepatology'
          >>> random_things.random_job_title()
          'King of Town'
          >>> random_things.random_animal()
          'Rapid yellow snake'
          >>> random_things.random_name()
          ('Carl','Banks')
          >>> random_things.random_flower()
          {'common_name': 'love-in-a-mist', 'botonical_name': 'nigella', 'meaning': ''}
        
        There are others. Here is the current list:
         - random_animal             
         - random_capital            
         - random_course             
         - random_flower             
         - random_highschool_musical 
         - random_job_title          
         - random_name               
         - random_president
         - random_sources 
         - random_state              
         - random_state_and_capital  
        
        
        
        
        
        Version 1.2.1.5
        ===============
        Added examples to the README
        
        Version 1.2.1.4
        ===============
        Added an actual README with content...what a thought.
        
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
