Skip to content
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

Add Set Endpoint Samples #2497

Merged
merged 4 commits into from
Nov 15, 2019
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
Diff view
Diff view
1 change: 1 addition & 0 deletions automl/beta/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google-cloud-automl==0.7.0
39 changes: 39 additions & 0 deletions automl/beta/set_endpoint.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Copyright 2019 Google LLC
#
# 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.


def set_endpoint(project_id):
"""Change your endpoint"""
# [START automl_set_endpoint]
from google.cloud import automl_v1beta1 as automl

# You must first create a dataset, using the `eu` endpoint, before you can
# call other operations such as: list, get, import, delete, etc.
client_options = {'api_endpoint': 'eu-automl.googleapis.com:443'}
nnegrey marked this conversation as resolved.
Show resolved Hide resolved

# Instantiates a client
client = automl.AutoMlClient(client_options=client_options)

# A resource that represents Google Cloud Platform location.
# project_id = 'YOUR_PROJECT_ID'
project_location = client.location_path(project_id, 'eu')
# [END automl_set_endpoint]

# List all the datasets available
# Note: Create a dataset in `eu`, before calling `list_datasets`.
response = client.list_datasets(
project_location, filter_='')

for dataset in response:
print(dataset)
26 changes: 26 additions & 0 deletions automl/beta/set_endpoint_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright 2019 Google LLC
#
# 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 set_endpoint

PROJECT_ID = os.environ['GCLOUD_PROJECT']


def test_set_endpoint(capsys):
set_endpoint.set_endpoint(PROJECT_ID)

out, _ = capsys.readouterr()
# Look for the display name
assert 'do_not_delete_me' in out
40 changes: 40 additions & 0 deletions language/cloud-client/v1/set_endpoint.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Copyright 2019 Google LLC
#
# 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.


def set_endpoint():
"""Change your endpoint"""
# [START language_set_endpoint]
# Imports the Google Cloud client library
from google.cloud import language

client_options = {'api_endpoint': 'eu-language.googleapis.com:443'}

# Instantiates a client
client = language.LanguageServiceClient(client_options=client_options)
# [END language_set_endpoint]

# The text to analyze
document = language.types.Document(
content='Hello, world!',
type=language.enums.Document.Type.PLAIN_TEXT)

# Detects the sentiment of the text
sentiment = client.analyze_sentiment(document=document).document_sentiment

print('Sentiment: {}, {}'.format(sentiment.score, sentiment.magnitude))


if __name__ == '__main__':
set_endpoint()
22 changes: 22 additions & 0 deletions language/cloud-client/v1/set_endpoint_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright 2019 Google LLC
#
# 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 set_endpoint


def test_set_endpoint(capsys):
set_endpoint.set_endpoint()

out, _ = capsys.readouterr()
assert 'Sentiment' in out
nnegrey marked this conversation as resolved.
Show resolved Hide resolved
6 changes: 4 additions & 2 deletions vision/cloud-client/detect/detect_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,17 @@ def test_detect_web_with_geo(capsys):
detect.web_entities_include_geo_results(file_name)
out, _ = capsys.readouterr()
out = out.lower()
assert 'zepra' in out or 'electra tower' in out or 'tel aviv' in out
assert ('zepra' in out or 'electra tower' in out or 'tel aviv' in out or
'jaffa' in out)


def test_detect_web_with_geo_uri(capsys):
file_name = 'gs://{}/vision/web/city.jpg'.format(ASSET_BUCKET)
detect.web_entities_include_geo_results_uri(file_name)
out, _ = capsys.readouterr()
out = out.lower()
assert 'zepra' in out or 'electra tower' in out or 'tel aviv' in out
assert ('zepra' in out or 'electra tower' in out or 'tel aviv' in out or
'jaffa' in out)


def test_detect_document(capsys):
Expand Down