I use the GenericAnalysis to analyse a ‘quite large’ excel and use the convert_excel_to_pdf to download or show the pdf. Sadly I get a TimeoutError:
First of all, how to fix the TimeoutError, second of all, the excel is indeed quite large, so it would be great to just convert a specific sheet based on the name to a pdf.
You could try using openpyxl with some specific settings for being memory efficient like read_only=True, data_only=True and other options. To then get only a single sheet you can indeed use the openpyxl workbook object and get only that sheet for processing, something like: