Skip to content

Instantly share code, notes, and snippets.

@berkorbay
Created August 3, 2021 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berkorbay/1824607a20e39a896b968e063a5b8f43 to your computer and use it in GitHub Desktop.
Save berkorbay/1824607a20e39a896b968e063a5b8f43 to your computer and use it in GitHub Desktop.
Blazing fast of xlsx files into pandas
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