Metadata-Version: 1.1
Name: guess
Version: 1.0.5
Summary: Japanese charactor encoding detector
Home-page: https://github.com/hamano/python-guess
Author: Tsukasa Hamano
Author-email: code@cuspy.org
License: BSD
Download-URL: http://pypi.python.org/pypi/guess/
Description: 
        This module was ported from gauche charconv module.
        Supported encoding is UTF-8, Shift_JIS, EUC-JP, ISO-2022-JP
        
        Example:
        
        >>> import guess
        >>> s = '\x82\xa0\x82\xa2\x82\xa4\x82\xa6\x82\xa8'
        >>> guess.guess(s)
        'Shift_JIS'
        >>> print s.decode('Shift_JIS')
        あいうえお
        
Platform: UNKNOWN
Classifier: Natural Language :: Japanese
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
