I have an excel sheet which has multiple tables in it, using openpyxl .tables method to read the tables but getting empty list eventhough there are two tables but it return empty. Is there a way to achieve it in python. I need to further process the data from these tables after extracting it into a dataframe. But the tables itself is not getting detected. Any pointers on this would be helpful.
from openpyxl import load_workbook import pandas as pd
#read file wb = load_workbook('29.xlsx')
#access specific sheet ws = wb["Sheet1"]
print(ws.tables.items())
Below is the structure of the Excel sheet.

