-
Notifications
You must be signed in to change notification settings - Fork 34
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
Update google scopes for v4 #66
base: master
Are you sure you want to change the base?
Conversation
@@ -16,15 +16,9 @@ | |||
import pandas as pd | |||
import numpy as np | |||
|
|||
from .utils import get_credentials | |||
from .utils import get_credentials, SCOPES |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reuse
SCOPES = ('https://www.googleapis.com/auth/drive.metadata.readonly ' | ||
'https://www.googleapis.com/auth/drive ' | ||
'https://spreadsheets.google.com/feeds ' | ||
'https://docs.google.com/feeds') | ||
'https://www.googleapis.com/auth/spreadsheets ' | ||
'https://www.googleapis.com/auth/docs') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update
yep, seems abandoned, question: why don't you use gspread (2023) or pygsheets (2022) ? or different use cases? |
I have 3 pandas dataframes that I need to upload to google sheets, for updating really (one where I also start from google sheets). I do that twice a year only, until now it just worked. Don't feel the pressure to do differently if it takes 10 minutes to patch to keep up. |
df2gspread/df2gspread/df2gspread.py Line 12 in a90137c
|
I didn't know about pygsheets, I'll check it out |
@elgalu I'm genuinely interested in how you landed on this PR? |
we provide an internal container image runtime with a bunch of packages and the ones that are not maintained start giving problems, like this one:) so thanks for the PR as we're now pinning to your fix<3 |
Note: I realized this repo is probably abandoned, just upstreaming it here in case it serves someone else.