7

我正在使用 Django,需要阅读上传的 xlsx 文件的表格和单元格。xlrd 应该可以,但是因为文件必须保留在内存中并且可能不会保存到某个位置,所以我不确定如何继续。

在这种情况下,起点是带有上传输入和提交按钮的网页。提交后,文件会被捕获request.FILES['xlsx_file'].file并发送到处理类,该处理类必须提取所有重要数据以进行进一步处理。

的类型request.FILES['xlsx_file'].file是 BytesIO 并且 xlrd 无法读取该类型,因为没有 getitem 方法。

将 BytesIO 转换为 StringIO 后,错误消息似乎保持不变'_io.StringIO' object has no attribute '__getitem__'

    file_enc = chardet.detect(xlsx_file.read(8))['encoding']
    xlsx_file.seek(0)

    sio = io.StringIO(xlsx_file.read().decode(encoding=file_enc, errors='replace'))
    workbook = xlrd.open_workbook(file_contents=sio)
4

3 回答 3

6

尝试xlrd.open_workbook(file_contents=request.FILES['xlsx_file'].read())

于 2016-04-07T10:19:37.100 回答
6

我正在将我的评论变成它自己的答案。它与更新问题中给出的示例代码(包括解码)有关:

好的,谢谢你的指点。我下载了 xlrd 并在本地进行了测试。似乎最好的方法是给它传递一个字符串,即。open_workbook(file_contents=xlsx_file.read().decode(encoding=file_enc, errors='replace')). 我误解了文档,但我很肯定 file_contents= 可以使用字符串。

于 2016-04-07T10:26:04.030 回答
0

我遇到了类似的问题,但在我的情况下,我需要通过 xls 文件的用户下载对 Djano 应用程序进行单元测试。

使用 StringIO 的基本代码对我有用。

class myTest(TestCase):
    def test_download(self):
        response = self.client('...')
        f = StringIO.StringIO(response.content)
        book = xlrd.open_workbook(file_contents = f.getvalue() )
        ...
        #unit-tests here
于 2017-05-17T17:02:05.640 回答