将包含阿拉伯语的.xls文件上传到我的Django网站时,运行代码时出现以下错误:
UnicodeDecodeError错误 'charmap'编解码器无法解码位置655224中的字节0x81:字符映射到
这是我的python / django代码(它是原始的,没有任何解码,因为我尝试了许多变种,它们都失败了):
#certain_file is the uploaded file
certain_file = TextIOWrapper(request.FILES['certain_file'].file, encoding=request.encoding)
with certain_file as f:
soup = BeautifulSoup(f, "html.parser")
#rest of code
我的目标是解析上传的文件。
非常感谢提前帮助!