Differences between xlwings vs openpyxl Reading Excel Workbooks
You are correct in that xlwings relies on pywin32, whereas openpyxl does not. openpyxl A “.xlsx” excel file is essentially a zip-file containing multiple XML files formatted according to Microsoft’s OOXML specification. With this specification it’s possible to create a program capable of directly reading/writing excel files in just about any programming language. This is … Read more