I'm building a script that reads information from a website and manipulates it.
The page may contain some special characters like ã, ç, ó, etc.
In order to simplify decoding issues, I use unidecode
, like this:
# coding=utf-8
from unidecode import unidecode
text = u'Órgão'
print text
print unidecode(text)
raw_input()
The above code when executed from console, ie python test.py
generates the result as:
Órgão
Orgao
However, if I build an exe using pyinstaller:
pyinstaller --onefile test.py
and run it, the code generates:
How do I make pyinstaller exe behave like console?
What you can do is explicitly import all additional decoding tables that come with the package like so
The PyInstaller parser will then include them in the distribution. Note, however, in this case the data variable gets imported into your script.