Skip to content

Commit fa93533

Browse files
committed
Removing support for AdWords v201509
1 parent 33d9692 commit fa93533

File tree

106 files changed

+1039
-8667
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

+1039
-8667
lines changed

ChangeLog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
4.2.0 -- 6/13/2016
2+
* Removed support and examples for AdWords v201509.
3+
* The AdWords ReportDownloader now accepts a "client_customer_id" keyword
4+
argument that overrides the default client customer ID.
5+
* For utilities such as the ReportDownloader or BatchJobHelper, data points
6+
about usage are now sent in the user-agent of API requests by default. This
7+
can be disabled with the new include_utilities_in_user_agent configuration in
8+
the googleads.yaml file.
9+
* Added a new parallel_report_download.py example.
10+
* Resolved issues:
11+
Issue #122: https://github.com/googleads/googleads-python-lib/issues/122
12+
Issue #123: https://github.com/googleads/googleads-python-lib/issues/123
13+
114
4.1.0 -- 5/26/2016
215
* Added support for AdWords v201605.
316
* Added new use_raw_enum_values keyword argument to the AdWords ReportDownloader

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ code to help you get started integrating with our APIs.
99
##Getting started
1010
1. Download and install the library
1111

12+
*[setuptools](https://pypi.python.org/pypi/setuptools) is a pre-requisite
13+
for installing the googleads library*
14+
1215
It is recommended that you install the library and its dependencies from
1316
PyPI using [pip](https://pip.pypa.io/en/stable/installing/). This can be
1417
accomplished with a single command:
@@ -144,6 +147,17 @@ suds_client.set_options(
144147
suds_client.service.mutate([operation])
145148
```
146149

150+
##Timeout Tips
151+
The requests sent by this library are sent via urllib, which is consequently
152+
where the timeout is set. If you set a system timeout elsewhere, the googleads
153+
library will respect it.
154+
155+
You can do the following if you wish to override the timeout:
156+
157+
```python
158+
import socket
159+
socket.setdefaulttimeout(15 * 60)
160+
```
147161

148162
##External Dependencies:
149163

examples/adwords/v201509/__init__.py

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

examples/adwords/v201509/account_management/__init__.py

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

examples/adwords/v201509/account_management/create_account.py

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

examples/adwords/v201509/account_management/get_account_changes.py

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

examples/adwords/v201509/account_management/get_account_hierarchy.py

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

examples/adwords/v201509/advanced_operations/__init__.py

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

0 commit comments

Comments
 (0)