gpt4 book ai didi

python - “ascii”编解码器无法编码字符 : ordinal not in range (128)

转载 作者:行者123 更新时间:2023-12-03 22:49:56 28 4
gpt4 key购买 nike

我正在使用 selenium 和 beautifulsoup 抓取一些网页。我正在遍历一堆链接,获取信息,然后将其转储到 JSON 中:

for event in events:

case = {'Artist': item['Artist'], 'Date': item['Date'], 'Time': item['Time'], 'Venue': item['Venue'],
'Address': item['Address'], 'Coordinates': item['Coordinates']}
item[event] = case

with open("testScrape.json", "w") as writeJSON:
json.dump(item, writeJSON, ensure_ascii=False)

当我访问此链接时: https://www.bandsintown.com/e/100778334-jean-deaux-music-at-rickshaw-stop?came_from=257&utm_medium=web&utm_source=home&utm_campaign=event

代码中断,我收到以下错误:
 Traceback (most recent call last):
File "/Users/s/PycharmProjects/hi/BandsintownWebScraper.py", line 126, in <module>
json.dump(item, writeJSON, ensure_ascii=False)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/__init__.py", line 190, in dump
fp.write(chunk)
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe6' in position 7: ordinal not in range(128)

我试过使用:
json.dump(item, writeJSON, ensure_ascii=False).decode('utf-8')

和:
json.dump(item, writeJSON, ensure_ascii=False).encode('utf-8')

没有成功。我相信是链接上的 ï 字符导致此失败。任何人都可以简要介绍正在发生的事情,编码/解码的含义以及如何解决此问题?提前致谢。

最佳答案

您可能需要设置 PYTHONIOENCODING在 shell 中运行你的 python 脚本之前。
例如,我在将 python 脚本输出重定向到日志文件时遇到了同样的错误:

$ your_python_script > output.log
'ascii' codec can't encode characters in position xxxxx-xxxxx: ordinal not in range(128)

在 shell 中将 PYTHONIOENCODING 更改为 UTF8 后,脚本执行时没有 ASCII 编解码器错误:
$ export PYTHONIOENCODING=utf8

$ your_python_script > output.log

关于python - “ascii”编解码器无法编码字符 : ordinal not in range (128),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56104377/

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