==========
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!')
    ¡plɹoʍ ollǝɥ

Installing
==========

Run the following to deploy the library on your system::

    $ python setup.py install

Command line
============

You can also easily use this software on the command line::

    $ echo hello world\! | python upsidedown.py
    ¡plɹoʍ ollǝɥ
