Created
August 3, 2021 18:49
-
-
Save berkorbay/1824607a20e39a896b968e063a5b8f43 to your computer and use it in GitHub Desktop.
Blazing fast of xlsx files into pandas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datatable import fread | |
import pandas as pd | |
excel_path = "my_excel_file.xlsx" | |
df = fread(excel_path+"/sheet_name").to_pandas() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment