-
Notifications
You must be signed in to change notification settings - Fork 599
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
Implement bigquery auth using pydata_google_auth #1728
Conversation
@tswast Can you review this when you get a chance? |
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.
Auth changes LGTM.
You could potentially allow passing in additional scopes in case folks want to do federated queries to Google Sheets, but they can always call pydata_google_auth
themselves and pass in the scopes they need in that case. I think defaulting to just the BigQuery scope is the right choice.
Looking at this, I'm realizing I should pull some of the auth how-to stuff from pandas-gbq over to the pydata-google-auth docs so that it can be a central resource for Ibis and pandas to link to. I've filed pydata/pydata-google-auth#19 to track that. I can follow-up with a PR to the Ibis docs once I get that in place. |
Also allow project_id and dataset_id to be optional
Closes #1583