---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-26-8a28a580c8af> in <module>()
----> 1 df = pd.read_excel('')
/Users/skkandrach/.virtualenvs/lede/lib/python3.5/site-packages/pandas/io/excel.py in read_excel(io, sheetname, header, skiprows, skip_footer, index_col, names, parse_cols, parse_dates, date_parser, na_values, thousands, convert_float, has_index_names, converters, engine, squeeze, **kwds)
168 """
169 if not isinstance(io, ExcelFile):
--> 170 io = ExcelFile(io, engine=engine)
171
172 return io._parse_excel(
/Users/skkandrach/.virtualenvs/lede/lib/python3.5/site-packages/pandas/io/excel.py in __init__(self, io, **kwds)
225 self.book = xlrd.open_workbook(file_contents=data)
226 elif isinstance(io, compat.string_types):
--> 227 self.book = xlrd.open_workbook(io)
228 else:
229 raise ValueError('Must explicitly set engine if not passing in'
/Users/skkandrach/.virtualenvs/lede/lib/python3.5/site-packages/xlrd/__init__.py in open_workbook(filename, logfile, verbosity, use_mmap, file_contents, encoding_override, formatting_info, on_demand, ragged_rows)
393 peek = file_contents[:peeksz]
394 else:
--> 395 with open(filename, "rb") as f:
396 peek = f.read(peeksz)
397 if peek == b"PK\x03\x04": # a ZIP file
FileNotFoundError: [Errno 2] No such file or directory: ''