top of page

Accessing Excel files with OpenPyXL


Here's a quick rundown of how to access an Excel file using Python and get a list of its worksheet names.

OpenPyXL is a module that will allow you to work with Excel spreadsheets in Python. In order to import it (I'm using Python 3.4.2 in this example) . . . go to the folder for the Python software containing scripts and open the Windows command prompt. Enter the command:

pip install openpyxl==2.1.4

After the module is imported, go to Python IDLE, and enter the command:

>>> import openpyxl

We'll review this spreadsheet:

Name the the Excel workbook with the openpyxl.load function, specifying the full path to the Excel file:

>>> wb = openpyxl.load_workbook('C:\FooFolder\python\BattingPost.xlsx')

After the workbook is accessed use this function to generate a list of the names of the worksheets used in the workbook: >>> wb.get_sheet_names()

As shown here we get the following results:


Sean O'Shea has more than 20 years of experience in the litigation support field with major law firms in New York and San Francisco.   He is an ACEDS Certified eDiscovery Specialist and a Relativity Certified Administrator.

The views expressed in this blog are those of the owner and do not reflect the views or opinions of the owner’s employer.

If you have a question or comment about this blog, please make a submission using the form to the right. 

Your details were sent successfully!

© 2015 by Sean O'Shea . Proudly created with Wix.com

bottom of page