我的解析器函数使用lxml
并提供了一个 unicode 字符串列表 ( book_list
)。
这些字符串被连接到一个文件名中,被清理然后传递subprocess.call
给另一个二进制文件继续工作。
我的问题是 unicode 对象(例如title_name = u'Wunderlicher Traum von einem gro\xdfen Narrennest'
)是用 ISO-8859-2 编码的(至少 'chardet' 告诉我的是这样),我需要将它们转换为一种格式,该格式可以在文件系统级别正确显示。当前代码导致文件名为u'Wunderlicher Traum von einem gro\xc3\x9fen Narrennest'
.
有谁知道我做错了什么?
一些信息:
sys.getdefaultencoding()
returnascii
,这让我很困惑,因为理论上不应该允许任何特殊字符,如 äöü 等)。- OS X 10.9,Python 2.7.5
def convert_books(book_list, output_dir):
for book in book_list:
author_name = book[0][0]
title_name = book[0][1]
#print chardet.detect(title_name)
#print type(title_name)
#print title_name.decode('iso-8859-2')
year_name = "1337"
output_file = u"%s - %s (%s).pdf" % (author_name, title_name, year_name)
keep_characters = (' ', '.', '_')
output_file.join(c for c in output_file if c.isalnum() or c in keep_characters).rstrip()
path_to_out = "%s%s" % (output_dir, output_file)
target_file = WORK_DIR + book[1].replace(".xml", ".html")
engine_parameter = [
WKHTMLTOPDF_BIN,
# GENERAL
"-l", # lower quality
"-L", "25mm",
"-R", "25mm",
"-T", "25mm",
"-B", "35mm",
"--user-style-sheet", "media/style.css",
target_file,
path_to_out,
]
print "+ Creating PDF \"%s\"" % (output_file)
call(engine_parameter)