Skip to content

Commit d558924

Browse files
committed
Merge pull request #68 from GoogleCloudPlatform/bq-comment
Add reference to where to find apis.
2 parents 53fe64c + dedd12a commit d558924

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

bigquery/samples/utils.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,12 @@ def get_service():
2222

2323
credentials = GoogleCredentials.get_application_default()
2424

25-
# The build() method takes care of injecting the proper scopes
26-
# for the given service, when using application default credentials.
25+
# Create and return the service object for v2 of the bigquery api. You can
26+
# 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.
2731
return build('bigquery', 'v2', credentials=credentials)
2832
# [END get_service]
2933

0 commit comments

Comments
 (0)