Skip to content

Commit 2004599

Browse files
committed
Removing support for AdWords v201601.
1 parent 25a2ce2 commit 2004599

121 files changed

Lines changed: 86 additions & 8961 deletions

File tree

Some content is hidden

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

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
4.5.0 -- 8/26/2016
2+
* AdWordsClient's initializer no longer requires the user_agent field. This
3+
field is also now validated to ensure that it only contains ASCII characters.
4+
* Removed support and examples for AdWords v201601.
5+
* Removed upgrade_ad_url example for AdWords v201605 and v201607.
6+
17
4.4.0 -- 8/23/2016
28
* Removed support for DFP v201505.
39
* Added support for DFP v201608.

examples/adwords/authentication/create_adwords_client_with_service_account.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ def main(service_account_email, key_file, service_account_user,
3939
sub=service_account_user)
4040

4141
adwords_client = adwords.AdWordsClient(
42-
developer_token, oauth2_client, user_agent, client_customer_id)
42+
developer_token, oauth2_client, user_agent,
43+
client_customer_id=client_customer_id)
4344

4445
customer = adwords_client.GetService('CustomerService').get()
4546
print 'You are logged in as customer: %s' % customer['customerId']

examples/adwords/authentication/create_adwords_client_without_yaml.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def main(client_id, client_secret, refresh_token, developer_token, user_agent,
4444
client_id, client_secret, refresh_token)
4545

4646
adwords_client = adwords.AdWordsClient(
47-
developer_token, oauth2_client, user_agent, client_customer_id)
47+
developer_token, oauth2_client, user_agent,
48+
client_customer_id=client_customer_id)
4849

4950
customer = adwords_client.GetService('CustomerService').get()
5051
print 'You are logged in as customer: %s' % customer['customerId']

examples/adwords/v201601/__init__.py

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

examples/adwords/v201601/account_management/__init__.py

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

examples/adwords/v201601/account_management/create_account.py

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

examples/adwords/v201601/account_management/get_account_changes.py

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

examples/adwords/v201601/account_management/get_account_hierarchy.py

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

examples/adwords/v201601/advanced_operations/__init__.py

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

0 commit comments

Comments
 (0)