Skip to content
New issue

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

The published version on pypi is outdated, is this library abononed or moved somewhere else? #61

Open
zengatsu opened this issue Mar 30, 2022 · 1 comment

Comments

@zengatsu
Copy link

No description provided.

@mroy-seedbox
Copy link

mroy-seedbox commented Jun 13, 2022

I'd suggest abandoning (that's what we did), when an entire library can be replaced with a couple lines of monkey patching in the actively maintained gspread lib:

    def upload_pandas_df(self, df):
      values = [df.columns.values.tolist()]
      values.extend(df.values.tolist())
      sheet.values_update(
        self.title,
        params = { 'valueInputOption': 'USER_ENTERED' },
        body = { 'values': values }
      )

    gspread.Worksheet.upload_pandas_df = upload_pandas_df

Or use gspread-dataframe instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants