Skip to content

Commit 8ef148f

Browse files
authored
Changes for release v0_4. (#9)
1 parent 7a151be commit 8ef148f

File tree

168 files changed

+11556
-2846
lines changed

Some content is hidden

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

168 files changed

+11556
-2846
lines changed

ChangeLog

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
* 0.3.0:
2+
- Google Ads v0_4 release.
3+
- Resolving GitHub issue #3:
4+
https://github.com/googleads/google-ads-python/issues/3
5+
16
* 0.2.0:
27
- Google Ads v0_3 release.
38

49
* 0.1.0:
5-
- Initial release with support for Google Ads API v0.
10+
- Initial release with support for Google Ads API v0.

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ Authors
8181
-------
8282

8383
* `Mark Saniscalchi`_
84+
* `David Wihl`_
8485

8586
.. _pip: https://pip.pypa.io/en/stable/installing
8687
.. _template: https://github.com/googleads/google-ads-python/blob/master/google-ads.yaml
@@ -92,3 +93,5 @@ Authors
9293
.. _API documentation: https://developers.google.com/google-ads/api/
9394
.. _API Support: https://developers.google.com/adwords/api/community/
9495
.. _Mark Saniscalchi: https://github.com/msaniscalchi
96+
.. _David Wihl: https://github.com/wihl
97+

examples/v0/account_management/get_account_information.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def main(client, customer_id):
5151

5252

5353
if __name__ == '__main__':
54-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
54+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
5555
# home directory if none is specified.
5656
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
5757
.load_from_storage())

examples/v0/advanced_operations/add_ad_group_bid_modifiers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def main(client, customer_id, ad_group_id, bid_modifier_value):
6565

6666

6767
if __name__ == '__main__':
68-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
68+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
6969
# home directory if none is specified.
7070
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
7171
.load_from_storage())

examples/v0/advanced_operations/add_expanded_text_ad_with_upgraded_urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def main(client, customer_id, ad_group_id):
9191

9292

9393
if __name__ == '__main__':
94-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
94+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
9595
# home directory if none is specified.
9696
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
9797
.load_from_storage())

examples/v0/advanced_operations/create_and_attach_shared_keyword_sets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def main(client, customer_id, campaign_id):
107107

108108

109109
if __name__ == '__main__':
110-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
110+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
111111
# home directory if none is specified.
112112
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
113113
.load_from_storage())

examples/v0/advanced_operations/find_and_remove_criteria_from_shared_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def main(client, customer_id, page_size, campaign_id):
118118

119119

120120
if __name__ == '__main__':
121-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
121+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
122122
# home directory if none is specified.
123123
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
124124
.load_from_storage())

examples/v0/advanced_operations/get_ad_group_bid_modifiers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def main(client, customer_id, page_size, ad_group_id=None):
6161

6262

6363
if __name__ == '__main__':
64-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
64+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
6565
# home directory if none is specified.
6666
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
6767
.load_from_storage())

examples/v0/advanced_operations/use_portfolio_bidding_strategy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def main(client, customer_id):
124124

125125

126126
if __name__ == '__main__':
127-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
127+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
128128
# home directory if none is specified.
129129
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
130130
.load_from_storage())

examples/v0/basic_operations/add_ad_groups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def main(client, customer_id, campaign_id):
5858

5959

6060
if __name__ == '__main__':
61-
# GoogleAdsClient will read a google-ads.yaml configuration file in the
61+
# GoogleAdsClient will read the google-ads.yaml configuration file in the
6262
# home directory if none is specified.
6363
google_ads_client = (google.ads.google_ads.client.GoogleAdsClient
6464
.load_from_storage())

0 commit comments

Comments
 (0)