Metadata-Version: 1.1
Name: upsidedown
Version: 0.4
Summary: "Flip" characters in a string to create an "upside-down" impression.
Home-page: http://github.com/cburgmer/upsidedown
Author: Christoph Burgmer
Author-email: christoph.burgmer@gmail.com
License: MIT
Download-URL: http://github.com/cburgmer/upsidedown/downloads
Description: ==========
        Upsidedown
        ==========
        
        Upsidedown is a simple Python module that "flips" latin characters in a
        string to create an "upside-down" impression. It makes extensive use of 
        compatible latin characters as encoded in Unicode.
        
        Example
        =======
        
            >>> import upsidedown
            >>> print upsidedown.transform('hello world!')
            ¡pꞁɹoʍ oꞁꞁǝɥ
        
        Installing
        ==========
        
        Run the following to deploy the library on your system::
        
            $ python setup.py install
        
        This does not only install the library but also registers an executable file
        (on Win32 systems as ``upsidedown.exe`` in ``C:\Python26\Scripts\``).
        
        Command line
        ============
        
        You can also easily use this software on the command line::
        
            $ echo hello world\! | upsidedown
            ¡pꞁɹoʍ oꞁꞁǝɥ
        
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Text Processing
