| author | raph |
| Sat, 06 Feb 2010 18:04:01 +0100 | |
| changeset 151 | 150cb6e76f30 |
| parent 149 | 0f2c5744b39b |
| child 175 | 4f072edc51a1 |
| permissions | -rw-r--r-- |
import chardet def to_unicode(input): if type(input) == str: res = None for encoding in [chardet.detect(input)['encoding'], 'utf8', 'latin1']: try: res = unicode(input, encoding) break; except UnicodeDecodeError: pass if not res: raise Exception('UnicodeDecodeError: could not decode') return res return input