Reads in an .ods/.fods file and returns a pandas DataFrame object (+ parse cell formatting)
Go to file
iuvbio 6fe9ee27ba Add build folder in .gitignore 2019-01-28 21:22:34 +01:00
pandas_ods_reader add tests 2019-01-28 21:22:29 +01:00
.gitignore Add build folder in .gitignore 2019-01-28 21:22:34 +01:00
README.md first commit 2019-01-28 21:21:35 +01:00
setup.py fix find_packages 2019-01-28 21:22:08 +01:00

README.md

pandas_ods_reader

Provides a function to read in an ODS file and return a pandas DataFrame

Dependencies

  • ezodf
  • pandas

Installation

pip install pandas_read_ods

Usage

from pandas_ods_reader import read_ods

path = "path/to/file.ods"
sheet_idx = 1
df1 = read_ods(path, sheet_idx)
sheet_name = "sheet"
df2 = read_ods(path, sheet_name)