gpt4 book ai didi

python - UnicodeDecodeError 与 pystache/mustache

转载 作者:太空宇宙 更新时间:2023-11-03 19:06:44 27 4
gpt4 key购买 nike

我正在尝试使用 pystache 将一些数据写入文件。数据来自 csv 文件,该文件是从 Google 文档电子表格导出的。使用 pystache 模板编写文件时出现此错误:

UnicodeDecodeError:“ascii”编解码器无法解码字节...

根据 Stackoverflow 上的其他一些问题,我应该使用 .decode('utf-8') 但我仍然遇到相同的错误。

datafile = "../data.csv"
renderer = pystache.Renderer()

f=open('sample.html','w')
templateHash={}
items = []

with open(datafile, 'rb') as csvfile:
datareader = csv.reader(csvfile, delimiter=',')
for row in datareader:
item = {'name' : row[2].decode('utf-8')}
items.append(item)

templateHash['lines'] = items
f.write(renderer.render_path('sample.mustache', templateHash))
f.close

这里是完整的回溯:

Traceback (most recent call last):
File "parsetable.py", line 15, in <module>
f.write(renderer.render_path('sample.mustache', templateHash))
UnicodeEncodeError: 'ascii' codec can't encode character u'\xfc' in position 750: ordinal not in range(128)
[Finished in 0.3s with exit code 1]

最佳答案

f = codecs.open('sample.html', 'w', encoding='utf-8')

或者更好的是,使用 with

关于python - UnicodeDecodeError 与 pystache/mustache,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14542073/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com