Skip to content

Commit 7888d90

Browse files
committed
AdWords v201605 sunset
1 parent bf44316 commit 7888d90

File tree

106 files changed

+122
-9261
lines changed

Some content is hidden

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

106 files changed

+122
-9261
lines changed

ChangeLog

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
5.3.0 -- 3/20/17:
2+
* Removed support for AdWords v201605.
3+
* Removed examples for AdWords v201605.
4+
* Added support for the complete set of DFP report download options.
5+
* Resolved issues:
6+
- Issue 169: https://github.com/googleads/googleads-python-lib/issues/169
7+
18
5.2.0 -- 3/1/17:
29
* Added support for AdWords v201702.
310
* Resolved issues:
411
- Issue 110: https://github.com/googleads/googleads-python-lib/issues/110
512
- Issue 180: https://github.com/googleads/googleads-python-lib/issues/180
613

7-
814
5.1.0 -- 2/13/17:
915
* Added support for DFP v201702.
1016
* Removed examples for DFP v201605.
@@ -14,7 +20,6 @@
1420
- Issue 176: https://github.com/googleads/googleads-python-lib/issues/176
1521
Issue 177: https://github.com/googleads/googleads-python-lib/issues/177
1622

17-
1823
5.0.0 -- 1/13/17:
1924
* BREAKING CHANGE: The underlying suds client now has cache enabled. By default,
2025
suds uses FileCache which requires access to local file system and will break

examples/adwords/authentication/create_adwords_client_with_service_account.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,14 @@ def main(service_account_email, key_file, service_account_user,
4242
developer_token, oauth2_client, user_agent,
4343
client_customer_id=client_customer_id)
4444

45-
customer = adwords_client.GetService('CustomerService').get()
46-
print 'You are logged in as customer: %s' % customer['customerId']
45+
customer_service = adwords_client.GetService('CustomerService',
46+
version='v201702')
47+
customers = customer_service.getCustomers()
48+
49+
print 'You are logged in as a user with access to the following customers:'
50+
51+
for customer in customers:
52+
print '\t%s' % customer['customerId']
4753

4854

4955
if __name__ == '__main__':

examples/adwords/authentication/create_adwords_client_without_yaml.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,14 @@ def main(client_id, client_secret, refresh_token, developer_token, user_agent,
4747
developer_token, oauth2_client, user_agent,
4848
client_customer_id=client_customer_id)
4949

50-
customer = adwords_client.GetService('CustomerService').get()
51-
print 'You are logged in as customer: %s' % customer['customerId']
50+
customer_service = adwords_client.GetService('CustomerService',
51+
version='v201702')
52+
customers = customer_service.getCustomers()
53+
54+
print 'You are logged in as a user with access to the following customers:'
55+
56+
for customer in customers:
57+
print '\t%s' % customer['customerId']
5258

5359

5460
if __name__ == '__main__':

examples/adwords/v201605/__init__.py

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

examples/adwords/v201605/account_management/__init__.py

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

examples/adwords/v201605/account_management/create_account.py

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

examples/adwords/v201605/account_management/get_account_changes.py

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

examples/adwords/v201605/account_management/get_account_hierarchy.py

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

examples/adwords/v201605/advanced_operations/__init__.py

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

0 commit comments

Comments
 (0)