What do I have to do in Python to figure out which encoding?
|
|
In Python 3, all strings are Unicode. There is a In Python 2, a string may be of type
|
|||||||||||||
|
|
Just do
One will say You can handle them separately using
Or do you mean you have a In that case, try this:
if it raises an exception, the string is not 100% ASCII. |
||||
|
|
|
Unicode is not an encoding - to quote Kumar McMillan:
Have a read of McMillan's Unicode In Python, Completely Demystified talk from PyCon 2008, it explains things a lot better than most of the related answers on Stack Overflow. |
|||
|
|
|
You could use Universal Encoding Detector, but be aware that it will just give you best guess, not the actual encoding, because it's impossible to know encoding of a string "abc" for example. You will need to get encoding information elsewhere, eg HTTP protocol uses Content-Type header for that. |
|||
|
|
|
If your code needs to be compatible with both Python 2 and Python 3, you can't directly use things like There are some ugly workarounds. An extremely ugly one is to compare the name of the type, instead of comparing the type itself. Here's an example:
An arguably slightly less ugly workaround is to check the Python version number, e.g.:
Those are both unpythonic, and most of the time there's probably a better way. |
|||||
|