Metadata-Version: 1.0
Name: uniout
Version: 0.3
Summary: Never see escaped bytes in output.
Home-page: https://github.com/moskytw/uniout
Author: Mosky
Author-email: mosky.tw@gmail.com
License: MIT
Description: Uniout
        ======
        
        It makes Python print the object representation in readable chars instead of the
        escaped string.
        
        Example
        -------
        
        Here we have a Python script, test.py:
        
        ::
        
            # test.py
        
            data = ['中文', 'にほんご', u'Λλ']
            print 'Before:', data
        
            import uniout
            print 'After :', data
        
        The output of test.py:
        
        ::
        
            Before: ['\xe4\xb8\xad\xe6\x96\x87', '\xe3\x81\xab\xe3\x81\xbb\xe3\x82\x93\xe3\x81\x94', u'\u039b\u03bb']
            After : ['中文', 'にほんご', u'Λλ']
        
        Installation
        ------------
        
        You can install it via PyPI,
        
        ::
        
            sudo pip install uniout
        
        or download it manually.
        
        Change Log
        ----------
        
        v0.3
        ~~~~
        
        Thanks for the pull requests `#3 <https://github.com/moskytw/uniout/pull/3>`_ and `#4 <https://github.com/moskytw/uniout/pull/4>`_ from `@timtan <https://github.com/timtan>`_, it now
        
        1. works well with `IPython <http://ipython.org/>`_,
        2. and also supports stderr.
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
