From eb461f73328a7570339efe2f059688b29b9af8d9 Mon Sep 17 00:00:00 2001 From: iuvbio Date: Mon, 4 Oct 2021 16:46:48 +0200 Subject: [PATCH] add info about which backend is used to docstring --- pandas_ods_reader/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandas_ods_reader/main.py b/pandas_ods_reader/main.py index b12748b..2d81b26 100644 --- a/pandas_ods_reader/main.py +++ b/pandas_ods_reader/main.py @@ -10,7 +10,9 @@ EXT_MAP = {".ods": ods, ".fods": fods} def read_ods(file_or_path, sheet=1, headers=True, columns=None): """ - Read in the provided ods file and convert it to `pandas.DataFrame`. + Read in the provided ods or .ods file and convert it to `pandas.DataFrame`. + Will detect the filetype based on the file's extension or fall back to + ods. Parameters ----------