We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A writer object would mainly serve to automate the arguments passed to get_as_dataframe but also a little bit for set_with_dataframe:
get_as_dataframe
set_with_dataframe
from gspread_dataframe import make_reader_writer ws = some_worksheet df = some_dataframe df2 = some_dataframe_with_same_columns reader_writer = make_reader_writer(example=df, resize=True, include_index=True) reader_writer.write(ws, df2) df3 = reader_writer.read(ws) print(reader_writer.get_as_dataframe_call_repr(numpy_alias='np')) >>> "get_as_dataframe(worksheet, header=0, indexcol=0, dtype={'col1': object, 'col2': np.int64, 'col3': np.datetime64})"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A writer object would mainly serve to automate the arguments passed to
get_as_dataframe
but also a little bit forset_with_dataframe
:The text was updated successfully, but these errors were encountered: