vote up 0 vote down star

I have a collection of files encoded in ANSI or UTF-16LE. I would like python to open the files using the correct encoding. The problem is that the ANSI files do not raise any sort of exception when encoded using UTF-16le and vice versa.

Is there a straightforward way to open up the files using the correct file encoding?

flag

3 Answers

vote up 4 vote down check

Use the chardet library to detect the encoding.

link|flag
chardet is not perfect, but if files with different encodings get mixed up, this is your best bet. – nosklo May 4 at 11:08
Chardet works but it takes way too long to process all the files – PCBEEF May 4 at 13:38
vote up 0 vote down

What's in the files? If it's plain text in a Latin-based alphabet, almost every other byte the UTF-16LE files will be zero. In the windows-1252 files, on the other hand, I wouldn't expect to see any zeros at all. For example, here's “Hello” in windows-1252:

93 48 65 6C 6C 6F 94

...and in UTF-16LE:

1C 20 48 00 65 00 6C 00 6C 00 6F 00 1D 20

Aside from the curly quotes, each character maps to the same value, with the addition of a trailing zero byte. In fact, that's true for every character in the ISO-8859-1 character set (windows-1252 extends ISO-8859-1 to add mappings for several printing characters—like curly quotes—to replace the control characters in the range 0x80..0x9F).

If you know all the files are either windows-1252 or UTF-16LE, a quick scan for zeroes should be all you need to figure out which is which. There's a good reason why chardet is so slow and complex, but in this case I think you can get away with quick and dirty.

link|flag
vote up 0 vote down

You can check for the BOM at the beginning of the file to check whether it's UTF.

Then unicode.decode accordingly (using one of the standard encodings).

EDIT Or, maybe, try s.decode('ascii') your string (given s is the variable name). If it throws UnicodeDecodeError, then decode it as 'utf_16_le'.

link|flag
Not all files contain a BOM header – kgiannakakis May 4 at 9:31
it's not ascii it's ANSI which is windows-1252 I believe. python does not through any exceptions when i try and decode a uft-16le file using windows-1252. – PCBEEF May 4 at 13:40
UnicodeDecodeError happens when string contains non-ANSI characters. No exceptions means your string doesn't happen to have those characters. Are you sure your string contains non-ANSI characters? What does your string look like before and after the conversion? – Mike Hordecki May 4 at 14:03
If I have a file that is encoded in utf-16le containing the text "๑۩۞۩๑", it will decode under windows-1252, however, when printing the result it will give me "ÿþQéÞéQ". Python does not throw any exceptions. – PCBEEF May 4 at 15:04
@Mike H, there's no such thing as a "non-ANSI character" (as you put it). Every byte from 0..255 maps to a character in windows-1252 (which extends ISO-8859-1). Some are control characters, which will print out as question marks or boxes, but they're all valid. – Alan Moore May 5 at 10:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.