8000 BigQuery: add auth samples for service accounts. by tswast · Pull Request #1027 · GoogleCloudPlatform/python-docs-samples · GitHub
[go: up one dir, main page]

Skip to content

BigQuery: add auth samples for service accounts. #1027

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

Merged
merged 1 commit into from
Jul 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
8000
Diff view
Diff view
2 changes: 2 additions & 0 deletions bigquery/cloud-client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
client_secrets.json
service_account.json
62 changes: 62 additions & 0 deletions bigquery/cloud-client/auth_snippets.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Demonstrates how to authenticate to Google BigQuery using the Google Cloud
Client Libraries."""

import argparse


def implicit():
from google.cloud import bigquery

# If you don't specify credentials when constructing the client, the
# client library will look for credentials in the environment.
bigquery_client = bigquery.Client()

# Make an authenticated API request
datasets = list(bigquery_client.list_datasets())
print(datasets)


def explicit():
from google.cloud import bigquery

# Explicitly use service account credentials by specifying the private key
# file. All clients in google-cloud-python have this helper, see
# https://google-cloud-python.readthedocs.io/en/latest/core/modules.html
# #google.cloud.client.Client.from_service_account_json
bigquery_client = bigquery.Client.from_service_account_json(
'service_account.json')

# Make an authenticated API request
buckets = list(bigquery_client.list_datasets())
print(buckets)


if __name__ == '__main__':
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter)

subparsers = parser.add_subparsers(dest='command')
subparsers.add_parser('implicit', help=implicit.__doc__)
subparsers.add_parser('explicit', help=explicit.__doc__)

args = parser.parse_args()

if args.command == 'implicit':
implicit()
elif args.command == 'explicit':
explicit()
33 changes: 33 additions & 0 deletions bigquery/cloud-client/auth_snippets_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import os

import mock

import auth_snippets


def test_implicit():
auth_snippets.implicit()


def test_explicit():
with open(os.environ['GOOGLE_APPLICATION_CREDENTIALS']) as creds_file:
creds_file_data = creds_file.read()

open_mock = mock.mock_open(read_data=creds_file_data)

with mock.patch('io.open', open_mock):
auth_snippets.explicit()
0