I want to read_excel from folder and load into database, but the excel will refresh every week and change name (ReportWK01, ReportWK02,...) In that folder (names To_Load) is only the one excel I need.
I tried specify path and then read_excel, but I don't know the correct syntax.
path = rb'\\csd-file\dd\bb\ss\uu\To_Load'
results = os.path.join(path, rb"*\*.xlsx")
df = pd.read_excel(results, engine='python')
It's write me
ValueError: Must explicitly set engine if not passing in buffer or path for io.