You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class ExcelFile(object):
"""
Class for parsing tabular excel sheets into DataFrame objects.
Uses xlrd for parsing .xls files or openpyxl for .xlsx files.
See ExcelFile.parse for more documentation
Parameters
----------
path : string or file-like object
Path to xls file
kind : {'xls', 'xlsx', None}, default None
"""
def __init__(self, path_or_buf):
The text was updated successfully, but these errors were encountered:
I found out also, that if it is a buffer it tries to read it as an ".xls" and then silently falls back to ".xlsx" in case of an ImportError.
Since I had only openpyxl installed this resulted in a unicode error when opening a xls buffer.
The text was updated successfully, but these errors were encountered: