Having issues with my excel to csv conversion in aws lambda using the AWSDatawrangler layer

I have a function that reads an excel file into a dataframe and then I save that dataframe in an s3 bucket using the awswrangler api to_csv function. The excel file has data starting from different rows and columns. My conversion code looks something like this: df = wr.s3.read_excel( path = ‘s3://bucket/filepath/’, sheet_name = ‘sheetname’,… Read More Having issues with my excel to csv conversion in aws lambda using the AWSDatawrangler layer