Is there any option to read and get DataFrame in fast with large excel files in python?
Asked
Active
Viewed 182 times
1 Answers
0
Pandas provides a function to read excel files:
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_excel.html
I think you need to install xlrd
separately for this
pip install xlrd
Please mention in your question if you already know about this and looking for an alternate solution.

Pushkar Nimkar
- 394
- 3
- 11
-
I kow this ,but what I am asking, how to large xlsx file to get dataframe in fast? – Jebaraj P May 25 '20 at 03:07