Metadata-Version: 1.1
Name: uniout
Version: 0.2
Summary: It makes Python print the object representation in readable chars instead of the escaped str
Home-page: UNKNOWN
Author: Mosky
Author-email: mosky.tw@gmail.com
License: MIT
Description: Uniout
        ======
        
        Print the object representation in readable unicode char instead of the code of
        char.
        
        Usage
        -----
        
        Just import this module.
        
        ::
        
            import uniout
        
        An Example
        ----------
        
        ::
        
            # test.py
            data = ['中文', 'にほんご', u'Λλ']
            print 'Before:', data
            import uniout
            print 'After :', data
        
        Result 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'Λλ']
        
Platform: UNKNOWN
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
