How do you read excel files with xlrd on Appengine

前端 未结 3 1364
旧时难觅i
旧时难觅i 2021-02-06 19:23

I am using xlrd in appengine. I use flask

I cant read the input file and it keeps on showing the same error message

the code is

def read_rows(inp         


        
3条回答
  •  南旧
    南旧 (楼主)
    2021-02-06 19:44

    Find a solution finally

    here's how I do it. Instead of saving the file, I read the content of the file and let xlrd reads it

    def read_rows(inputfile):
      rows = []
      wb = xlrd.open_workbook(file_contents=inputfile.read())
      sh = wb.sheet_by_index(0)
      for rownum in range(sh.nrows):
        rows.append(sh.row_values(rownum))
      return rows
    

    worked nicely and turned the excel files into JSON-able formats. If you want to output the json simply use json.dumps().

    full code example can be found at https://github.com/cjhendrix/HXLator/blob/master/gae/main.py and it features full implementation of the xlrd and how to work with the data.

    Thx for the pointers

提交回复
热议问题