Metadata-Version: 1.1
Name: surrealism
Version: 0.2
Summary: Surreal sentence and error message generator.
Home-page: https://pypi.python.org/pypi/surrealism
Author: Morrolan
Author-email: morrolan@icloud.com
License: GNU General Public License (GPL)
Download-URL: https://pypi.python.org/pypi/surrealism/
Description: surrealism
        ==========
        
        surrealism module for Python
        ----------------------------
        
        
        This module allows you to generate surreal sentences and error messages very easily from within your python programs.
        
        
        Installation
        ------------
        
        If you have downloaded the source distribution, to install do the following at the commandline: 
        
        ::
           
           $ python setup.py install
        
        
        If you can use and install Python Egg's, you can do:
        
        ::
        
           $ easy_install surrealism
        
        
        And it will download the latest version from the Python Package Index.
        
        
        
        
        Usage Examples
        --------------
        
        **Generate a surreal sentence**:
        
        ::
        
           >>> import surrealism
           >>> surr = surrealism.Surrealism()
           >>> sen = surr.getsentence()
           
           >>> Why did the Gallifreyan helmet hide apples behind the bright porridge-bowl?  Because it was being penetrated by the will-o'-the-wisp!
           
        
           
        **Generate a surreal error message**:
        
        ::
        
           >>> import surrealism
           >>> surr = surrealism.Surrealism()
           >>> sen = surr.getfault()
           
           >>> jump-lead .c:147: sleepy error before 'stick insect' - 'salt crystal' undeclared.
Keywords: surreal,surrealism,error message
Platform: Windows
Platform: Unix
Platform: OS X
Classifier: Programming Language :: Python
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Libraries :: Python Modules
