I am writing a script that will try encoding bytes into many different encodings in Python 2.6. Is there some way to get a list of available encodings that I can iterate ove
Probably you can do this:
from encodings.aliases import aliases print aliases.keys()