Skip to content

Commit

Permalink
Release version 14.0.1 (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenRKarl authored Sep 29, 2021
1 parent 868bf36 commit 5079490
Show file tree
Hide file tree
Showing 31 changed files with 360 additions and 75 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
* 14.0.1
- Pin protobuf to < 3.18.0
- Add examples add_bidding_data_exclusion, add_bidding_seasonality_adjustment
- Style updates for examples that use search_stream
- Fix hardcoded URLs for media in various examples

* 14.0.0
- New required configuration value to specify protobuf message types, see:
https://developers.google.com/google-ads/api/docs/client-libs/python/protobuf-messages
Expand Down
4 changes: 2 additions & 2 deletions examples/account_management/get_pending_invitations.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ def main(client, customer_id):
FROM customer_user_access_invitation
WHERE customer_user_access_invitation.invitation_status = PENDING"""

response = googleads_service.search_stream(
stream = googleads_service.search_stream(
customer_id=customer_id, query=query
)
for batch in response:
for batch in stream:
for row in batch.results:
invite = row.customer_user_access_invitation
print(
Expand Down
133 changes: 133 additions & 0 deletions examples/advanced_operations/add_bidding_data_exclusion.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
#!/usr/bin/env python
# Copyright 2021 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
#
# https://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.
"""Adds a channel-level data exclusion for Smart Bidding.
The exclusion specifically excludes conversions from being used by Smart Bidding
for the time interval specified.
For more information on using data exclusions, see:
https://developers.google.com/google-ads/api/docs/campaigns/bidding/data-exclusions
"""


import argparse
import sys
from uuid import uuid4

from google.ads.googleads.client import GoogleAdsClient
from google.ads.googleads.errors import GoogleAdsException


def main(client, customer_id, start_date_time, end_date_time):
"""The main method that creates all necessary entities for the example.
Args:
client: an initialized GoogleAdsClient instance.
customer_id: a client customer ID.
start_date_time: a str of the start date for the exclusion period.
end_date_time: a str of the end date for the exclusion period.
"""
# [START add_bidding_data_exclusion]
bidding_data_exclusion_service = client.get_service(
"BiddingDataExclusionService"
)
operation = client.get_type("BiddingDataExclusionOperation")
bidding_data_exclusion = operation.create
# A unique name is required for every data exclusion
bidding_data_exclusion.name = f"Data exclusion #{uuid4()}"
# The CHANNEL scope applies the data exclusion to all campaigns of specific
# advertising channel types. In this example, the exclusion will only
# apply to Search campaigns. Use the CAMPAIGN scope to instead limit the
# scope to specific campaigns.
bidding_data_exclusion.scope = (
client.enums.SeasonalityEventScopeEnum.CHANNEL
)
bidding_data_exclusion.advertising_channel_types.append(
client.enums.AdvertisingChannelTypeEnum.SEARCH
)
# If setting scope CAMPAIGN, add individual campaign resource name(s)
# according to the commented out line below.
#
# bidding_data_exclusion.campaigns.append(
# "INSERT_CAMPAIGN_RESOURCE_NAME_HERE"
# )

bidding_data_exclusion.start_date_time = start_date_time
bidding_data_exclusion.end_date_time = end_date_time

response = bidding_data_exclusion_service.mutate_bidding_data_exclusions(
customer_id=customer_id, operations=[operation]
)

resource_name = response.results[0].resource_name

print(f"Added data exclusion with resource name: '{resource_name}'")
# [END add_bidding_data_exclusion]


if __name__ == "__main__":
# GoogleAdsClient will read the google-ads.yaml configuration file in the
# home directory if none is specified.
googleads_client = GoogleAdsClient.load_from_storage(version="v8")

parser = argparse.ArgumentParser(
description="Adds a data exclusion for conversions in Smart Bidding "
"for the given time interval."
)
# The following argument(s) should be provided to run the example.
parser.add_argument(
"-c",
"--customer_id",
type=str,
required=True,
help="The Google Ads customer ID.",
)
parser.add_argument(
"-s",
"--start_date_time",
type=str,
required=True,
help="The start date for the exclusion period, must be in the format: "
"'yyyy-MM-dd HH:mm:ss'.",
)
parser.add_argument(
"-e",
"--end_date_time",
type=str,
required=True,
help="The end date for the exclusion period, must be in the format: "
"'yyyy-MM-dd HH:mm:ss'.",
)

args = parser.parse_args()

try:
main(
googleads_client,
args.customer_id,
args.start_date_time,
args.end_date_time,
)
except GoogleAdsException as ex:
print(
f'Request with ID "{ex.request_id}" failed with status '
f'"{ex.error.code().name}" and includes the following errors:'
)
for error in ex.failure.errors:
print(f'Error with message "{error.message}".')
if error.location:
for field_path_element in error.location.field_path_elements:
print(f"\t\tOn field: {field_path_element.field_name}")
sys.exit(1)
156 changes: 156 additions & 0 deletions examples/advanced_operations/add_bidding_seasonality_adjustment.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
#!/usr/bin/env python
# Copyright 2021 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
#
# https://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.
"""Adds a channel-level seasonality adjustment for Smart Bidding.
The adjustment changes Smart Bidding behavior by the expected change in
conversion rate for the given future time interval.
For more information on using seasonality adjustments, see:
https://developers.google.com/google-ads/api/docs/campaigns/bidding/seasonality-adjustments
"""


import argparse
import sys
from uuid import uuid4

from google.ads.googleads.client import GoogleAdsClient
from google.ads.googleads.errors import GoogleAdsException


def main(
client,
customer_id,
start_date_time,
end_date_time,
conversion_rate_modifier,
):
"""The main method that creates all necessary entities for the example.
Args:
client: an initialized GoogleAdsClient instance.
customer_id: a client customer ID.
start_date_time: a str of the start date for the exclusion period.
end_date_time: a str of the end date for the exclusion period.
conversion_rate_modifier: the modifier to apply to conversions during
the given time period.
"""
# [START add_bidding_seasonality_adjustment]
bidding_seasonality_adjustment_service = client.get_service(
"BiddingSeasonalityAdjustmentService"
)
operation = client.get_type("BiddingSeasonalityAdjustmentOperation")
bidding_seasonality_adjustment = operation.create
# A unique name is required for every seasonality adjustment.
bidding_seasonality_adjustment.name = f"Seasonality adjustment #{uuid4()}"
# The CHANNEL scope applies the conversion_rate_modifier to all campaigns of
# specific advertising channel types. In this example, the
# conversion_rate_modifier will only apply to Search campaigns. Use the
# CAMPAIGN scope to instead limit the scope to specific campaigns.
bidding_seasonality_adjustment.scope = (
client.enums.SeasonalityEventScopeEnum.CHANNEL
)
bidding_seasonality_adjustment.advertising_channel_types.append(
client.enums.AdvertisingChannelTypeEnum.SEARCH
)
# If setting scope CAMPAIGN, add individual campaign resource name(s)
# according to the commented out line below.
#
# bidding_seasonality_adjustment.campaigns.append(
# "INSERT_CAMPAIGN_RESOURCE_NAME_HERE"
# )

bidding_seasonality_adjustment.start_date_time = start_date_time
bidding_seasonality_adjustment.end_date_time = end_date_time
# The conversion_rate_modifier is the expected future conversion rate
# change. When this field is unset or set to 1.0, no adjustment will be
# applied to traffic. The allowed range is 0.1 to 10.0.
bidding_seasonality_adjustment.conversion_rate_modifier = (
conversion_rate_modifier
)

response = bidding_seasonality_adjustment_service.mutate_bidding_seasonality_adjustments(
customer_id=customer_id, operations=[operation]
)

resource_name = response.results[0].resource_name

print(f"Added seasonality adjustment with resource name: '{resource_name}'")
# [END add_bidding_seasonality_adjustment]


if __name__ == "__main__":
# GoogleAdsClient will read the google-ads.yaml configuration file in the
# home directory if none is specified.
googleads_client = GoogleAdsClient.load_from_storage(version="v8")

parser = argparse.ArgumentParser(
description="Adds a seasonality adjustment for conversions in Smart "
"Bidding for the given time interval."
)
# The following argument(s) should be provided to run the example.
parser.add_argument(
"-c",
"--customer_id",
type=str,
required=True,
help="The Google Ads customer ID.",
)
parser.add_argument(
"-s",
"--start_date_time",
type=str,
required=True,
help="The start date for the adjustment period, must be in the format: "
"'yyyy-MM-dd HH:mm:ss'.",
)
parser.add_argument(
"-e",
"--end_date_time",
type=str,
required=True,
help="The end date for the adjustment period, must be in the format: "
"'yyyy-MM-dd HH:mm:ss'.",
)
parser.add_argument(
"-m",
"--conversion_rate_modifier",
type=float,
required=True,
help="The conversion rate modifier that will be applied during the "
"adjustment period. This value must be in the range 0.1 to 10.0.",
)

args = parser.parse_args()

try:
main(
googleads_client,
args.customer_id,
args.start_date_time,
args.end_date_time,
args.conversion_rate_modifier,
)
except GoogleAdsException as ex:
print(
f'Request with ID "{ex.request_id}" failed with status '
f'"{ex.error.code().name}" and includes the following errors:'
)
for error in ex.failure.errors:
print(f'Error with message "{error.message}".')
if error.location:
for field_path_element in error.location.field_path_elements:
print(f"\t\tOn field: {field_path_element.field_name}")
sys.exit(1)
2 changes: 1 addition & 1 deletion examples/advanced_operations/add_display_upload_ad.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from google.ads.googleads.errors import GoogleAdsException


BUNDLE_URL = "https://goo.gl/9Y7qI2"
BUNDLE_URL = "https://gaagl.page.link/ib87"


def main(client, customer_id, ad_group_id):
Expand Down
4 changes: 2 additions & 2 deletions examples/advanced_operations/add_local_campaign.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
from google.ads.googleads.errors import GoogleAdsException


_MARKETING_IMAGE_URL = "https://goo.gl/3b9Wfh"
_LOGO_IMAGE_URL = "https://goo.gl/mtt54n"
_MARKETING_IMAGE_URL = "https://gaagl.page.link/Eit5"
_LOGO_IMAGE_URL = "https://gaagl.page.link/bjYi"
_YOUTUBE_VIDEO_ID = "ECpDzH9gXh8"


Expand Down
4 changes: 2 additions & 2 deletions examples/advanced_operations/add_smart_display_ad.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@


_DATE_FORMAT = "%Y%m%d"
_MARKETING_IMAGE_URL = "https://goo.gl/3b9Wfh"
_MARKETING_IMAGE_URL = "https://gaagl.page.link/Eit5"
_MARKETING_IMAGE_WIDTH = 600
_MARKETING_IMAGE_HEIGHT = 315
_SQUARE_MARKETING_IMAGE_URL = "https://goo.gl/mtt54n"
_SQUARE_MARKETING_IMAGE_URL = "https://gaagl.page.link/bjYi"
_SQUARE_MARKETING_IMAGE_SIZE = 512


Expand Down
4 changes: 2 additions & 2 deletions examples/basic_operations/get_campaigns.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ def main(client, customer_id):
ORDER BY campaign.id"""

# Issues a search request using streaming.
response = ga_service.search_stream(customer_id=customer_id, query=query)
stream = ga_service.search_stream(customer_id=customer_id, query=query)

for batch in response:
for batch in stream:
for row in batch.results:
print(
f"Campaign with ID {row.campaign.id} and name "
Expand Down
4 changes: 2 additions & 2 deletions examples/basic_operations/get_expanded_text_ads.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ def main(client, customer_id, ad_group_id=None):
if ad_group_id:
query += f" AND ad_group.id = {ad_group_id}"

response = ga_service.search_stream(customer_id=customer_id, query=query)
stream = ga_service.search_stream(customer_id=customer_id, query=query)

for batch in response:
for batch in stream:
for row in batch.results:
ad = row.ad_group_ad.ad

Expand Down
4 changes: 2 additions & 2 deletions examples/billing/add_billing_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ def _set_billing_setup_date_times(client, customer_id, billing_setup):
LIMIT 1"""

ga_service = client.get_service("GoogleAdsService")
response = ga_service.search_stream(customer_id=customer_id, query=query)
stream = ga_service.search_stream(customer_id=customer_id, query=query)
# Coercing the response iterator to a list causes the stream to be fully
# consumed so that we can easily access the last row in the request.
batches = list(response)
batches = list(stream)
# Checks if any results were included in the response.
if batches:
# Retrieves the ending_date_time of the last BillingSetup.
Expand Down
4 changes: 2 additions & 2 deletions examples/billing/get_account_budgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def main(client, customer_id):
account_budget.proposed_end_time_type
FROM account_budget"""

response = ga_service.search_stream(customer_id=customer_id, query=query)
stream = ga_service.search_stream(customer_id=customer_id, query=query)

for batch in response:
for batch in stream:
for row in batch.results:
budget = row.account_budget

Expand Down
Loading

0 comments on commit 5079490

Please sign in to comment.