I need to convert a bunch of files to utf-8 in Python, and I have trouble with the "converting the file" part.
I'd like to do the equivalent of:
iconv -t utf-8 $file > converted/$file # this is shell code
Thanks!
|
|
|
You can use the codecs module, like this:
EDIT: added |
||||
|
This worked for me in a small test:
|
|||
|
|
|
Thanks for the replies, it works! And since the source files are in mixed formats, I added a list of source formats to be tried in sequence (
But maybe there is a better way to guess each source file's format? Cheers! |
|||
|
|
To guess what's the source encoding you can use the Example:
|
|||
|
|