Reading can be a bit verbose for something so basic. Instead of:
df = mysheet['A1'].expand().options(pd.DataFrame).value
or
df = mysheet['A1'].options(pd.DataFrame, expand='table').value
You could do:
df = mysheet['A1'].options('df', expand='table').value
Maybe it should even default to expand='table' which would simplify things to:
df = mysheet['A1'].options('df').value
The behavior of pd.DataFrame could be left as-is to be backward compatible.
Opinions?
Reading can be a bit verbose for something so basic. Instead of:
or
You could do:
Maybe it should even default to expand='table' which would simplify things to:
The behavior of
pd.DataFramecould be left as-is to be backward compatible.Opinions?