So I am trying to search through multiple excel files using openpyxl. I've seen ways to do it where you have 3 maybe 4 files, however I am looking to do it with roughly 30 files. The list of files grows daily so I was wondering if there is a command to just use all files in a folder or something of that nature. Luckily each workbook only has one sheet per book
I don't have much as this is one of my first times using python in a long time however what I do have is below
>>> import openpyxl
>>> wb = openpyxl.load_workbook('example.xlsx')
>>> type(wb)
<class 'openpyxl.workbook.workbook.Workbook'>