Tutorial — openpyxl 3.0.9 documentation
openpyxl.readthedocs.io › en › stableTutorial — openpyxl 3.0.9 documentation Tutorial ¶ Create a workbook ¶ There is no need to create a file on the filesystem to get started with openpyxl. Just import the Workbook class and start work: >>> from openpyxl import Workbook >>> wb = Workbook() A workbook is always created with at least one worksheet.