Metadata-Version: 1.0
Name: iconv_codecs
Version: 0.1a1
Summary: Python module to register all supported iconv codecs
Home-page: http://pythonlog.wordpress.com/2009/03/03/ajuste-a-agua-conforme-o-foobar/
Author: Clovis Fabricio
Author-email: nosklo at gmail dot com
License: UNKNOWN
Description: \
        iconv_codec: module to register codecs to encode/decode any char supported by
        system's iconv command.
        
        The codecs are registered in python and are available on all python functions
        that support an encoding parameter.
        
        Usage:
        After importing the module, just use the encoding with the 'iconv:' prefix.
        Examples:
        
        >>> import iconv_codecs
        >>> '\xa3\x85\xa2\xa3'.decode('iconv:CP284')
        u'test'
        >>> u'testing'.encode('iconv:CSEBCDICFISEA')
        '\xa3\x85\xa2\xa3\x89\x95\x87'
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Internationalization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
