Skip to content

Commit 9592c16

Browse files
author
David Wihl
committed
googleads Python Client Library v15.0.0 -- 11/14/2018
1 parent 1e88214 commit 9592c16

File tree

537 files changed

+1240
-981
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

537 files changed

+1240
-981
lines changed

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
15.0.0 -- 11/14/2018
2+
* Added support for v201811.
3+
* Removed support for v201711.
4+
* Removed examples for v201802.
5+
* Remove ContentMetadataKeyHierarchyService
6+
* Added version parameter to PQL utilities to account for statement
7+
differences among API versions. This parameter defaults to the most recent
8+
API version. If you update your Python client library but don't plan on
9+
migrating to the newest API version, you might need to explicitly declare the
10+
version for the PQL utility to use.
11+
112
14.1.0 -- 09/21/18
213
* Added support and examples for AdWords v201809.
314
* Resolved issues:

examples/ad_manager/v201802/content_metadata_key_hierarchy_service/delete_content_metadata_key_hierarchies.py

Lines changed: 0 additions & 81 deletions
This file was deleted.

examples/ad_manager/v201802/forecast_service/get_availability_forecast.py

Lines changed: 0 additions & 130 deletions
This file was deleted.

examples/ad_manager/v201805/activity_group_service/get_active_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main(client):
2525
activity_group_service = client.GetService(
2626
'ActivityGroupService', version='v201805')
2727
# Create a statement to select activity groups.
28-
statement = (ad_manager.StatementBuilder()
28+
statement = (ad_manager.StatementBuilder(version='v201805')
2929
.Where('status = :status')
3030
.WithBindVariable('status', 'ACTIVE'))
3131

examples/ad_manager/v201805/activity_group_service/get_all_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def main(client):
2626
'ActivityGroupService', version='v201805')
2727

2828
# Create a statement to select activity groups.
29-
statement = ad_manager.StatementBuilder()
29+
statement = ad_manager.StatementBuilder(version='v201805')
3030

3131
# Retrieve a small amount of activity groups at a time, paging
3232
# through until all activity groups have been retrieved.

examples/ad_manager/v201805/activity_group_service/update_activity_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def main(client, activity_group_id, advertiser_company_id):
4040
version='v201805')
4141

4242
# Create statement object to select a single activity groups by ID.
43-
statement = (ad_manager.StatementBuilder()
43+
statement = (ad_manager.StatementBuilder(version='v201805')
4444
.Where('id = :activityGroupId')
4545
.WithBindVariable('activityGroupId', long(activity_group_id))
4646
.Limit(1))

examples/ad_manager/v201805/activity_service/get_active_activities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def main(client):
2424
# Initialize appropriate service.
2525
activity_service = client.GetService('ActivityService', version='v201805')
2626
# Create a statement to select activities.
27-
statement = (ad_manager.StatementBuilder()
27+
statement = (ad_manager.StatementBuilder(version='v201805')
2828
.Where('status = :status')
2929
.WithBindVariable('status', 'ACTIVE'))
3030

examples/ad_manager/v201805/activity_service/get_all_activities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main(client):
2525
activity_service = client.GetService('ActivityService', version='v201805')
2626

2727
# Create a statement to select activities.
28-
statement = ad_manager.StatementBuilder()
28+
statement = ad_manager.StatementBuilder(version='v201805')
2929

3030
# Retrieve a small amount of activities at a time, paging
3131
# through until all activities have been retrieved.

examples/ad_manager/v201805/activity_service/update_activities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def main(client, activity_id):
3838
activity_service = client.GetService('ActivityService', version='v201805')
3939

4040
# Create statement object to select one activity by ID to update.
41-
statement = (ad_manager.StatementBuilder()
41+
statement = (ad_manager.StatementBuilder(version='v201805')
4242
.Where('id = :activityId')
4343
.WithBindVariable('activityId', long(activity_id))
4444
.Limit(1))

examples/ad_manager/v201805/audience_segment_service/get_all_audience_segments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def main(client):
2626
'AudienceSegmentService', version='v201805')
2727

2828
# Create a statement to select audience segments.
29-
statement = ad_manager.StatementBuilder()
29+
statement = ad_manager.StatementBuilder(version='v201805')
3030

3131
# Retrieve a small amount of audience segments at a time, paging
3232
# through until all audience segments have been retrieved.

0 commit comments

Comments
 (0)