Trim pydata-google-auth package and add tests #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is the initial version of the proposed pydata-google-auth package (to be used by pandas-gbq and ibis). It includes two methods:
pydata_google_auth.default()
google.auth.default()
and then falls back to user credentials.pydata_google_auth.get_user_credentials()
get_user_credentials()
function, as proposed in pandas-gbq auth proposal googleapis/python-bigquery-pandas#161. Missing in this implementation is a more configurable way to adjust credentials caching. I currently use thereauth
logic from pandas-gbq.I drop
try_credentials()
, as it makes less sense when this module might be used for other APIs besides BigQuery. Plus there were problems withtry_credentials()
even for pandas-gbq (googleapis/python-bigquery-pandas#202, googleapis/python-bigquery-pandas#198).FYI @max-sixty @cpcloud