Read in an ODS file and return it as a pandas.DataFrame
Project description
pandas_ods_reader
Provides a function to read in an ODS file and returns a pandas DataFrame.
It uses ezodf
to read in the ods file. If a range is specified in the sheet
to be imported, it seems that ezodf
imports empty cells as well. Therefore,
completely empty rows and columns are dropped from the DataFrame, before it is
returned. Only trailing empty rows and columns are dropped.
If the ODS file contains duplicated column names, they will be numbered and the number is appended to the column name in the resulting DataFrame.
Dependencies
ezodf
lxml
pandas
Installation
pip install pandas_ods_reader
Usage
from pandas_ods_reader import read_ods
path = "path/to/file.ods"
# load a sheet based on its index (1 based)
sheet_idx = 1
df = read_ods(path, sheet_idx)
# load a sheet based on its name
sheet_name = "sheet1"
df = read_ods(path, sheet_name)
# load a file that does not contain a header row
# if no columns are provided, they will be numbered
df = read_ods(path, 1, headers=False)
# load a file and provide custom column names
# if headers is True (the default), the header row will be overwritten
df = read_ods(path, 1, columns=["A", "B", "C"])
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for pandas_ods_reader-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2d6e4f9cd2850da32808bbc68d433a337911058387992026d3987ead1f4a7c8 |
|
MD5 | 47bd9d42cdaed2927f67713aab0e7517 |
|
BLAKE2b-256 | d9f8c1097f90411ec2cdfee9686c469a8acabff678185d761345975fc559c9fc |