我试图在导入unidecode的脚本上使用PyInstaller。 Unidecode本身有条件地在其__init__.py
try:
table = Cache[section]
except KeyError:
try:
mod = __import__('unidecode.x%03x'%(section), [], [], ['data'])
except ImportError:
Cache[section] = None
continue # No match: ignore this character and carry on.
PyInstaller警告 import 黑客攻击,但我无法找到一种方法告诉它使用unidecode中的188个字符表(x000.py到x099.py) 。目录
最终的.exe运行正常,但Unicode字符未转换,只是消失了。
任何人都可以帮我让PyInstaller识别字符表吗?