Skip to main content

Alternate, faster version of pandas.read_excel by Felix Kling

Project description

excel_fast_load

Load XLSX/XLSM files into pandas dataframes faster than pandas.read_excel

author: FelixKling

NOTE: Science for Change just packages this code to use it because we find it useful for Citizen Science projects!

This code is provided as is, with no license and no warranties, as it was shared by Felix: https://stackoverflow.com/a/62277641

Usage

from excel_fast_load import excel_fast_load
dataframe = excel_fast_load('path/to/excelfile.xlsx')

Optional parameters after path

sheet_name: str. Name of the sheet to read. If none, the first (not the active!) sheet is read. The default is None.

header: bool. Whether to use the first line as column headers. The default is True.

index_col: bool. Whether to use the first column as index. The default is False.

skiprows: list of int. The row numbers to skip ([0, 1] skips the first two rows). The default is [].

skipcolumns: list of int. The column numbers to skip ([0, 1] skips the first two columns). The default is [].

Raises

TypeError If the file is no .xlsx or .xlsm file. FileNotFoundError If the sheet name is not found.

Returns

Pandas.DataFrame. The input file as DataFrame.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

excel_fast_load-1.0.0.tar.gz (4.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page