We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53fe64c + dedd12a commit d558924Copy full SHA for d558924
bigquery/samples/utils.py
@@ -22,8 +22,12 @@ def get_service():
22
23
credentials = GoogleCredentials.get_application_default()
24
25
- # The build() method takes care of injecting the proper scopes
26
- # for the given service, when using application default credentials.
+ # Create and return the service object for v2 of the bigquery api. You can
+ # browse available apis and versions here:
27
+ # https://developers.google.com/api-client-library/python/apis/
28
+ #
29
+ # The build() method also takes care of injecting the necessary scopes
30
+ # to access the given service, when using application default credentials.
31
return build('bigquery', 'v2', credentials=credentials)
32
# [END get_service]
33
0 commit comments