123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- """This example illustrates how to get all campaigns.
- To add campaigns, run add_campaigns.py.
- """
- import argparse
- import sys
- from google.ads.googleads.client import GoogleAdsClient
- from google.ads.googleads.errors import GoogleAdsException
- def main(client, customer_id):
- ga_service = client.get_service("GoogleAdsService")
- query = """
- SELECT
- campaign.id,
- campaign.name
- FROM campaign
- ORDER BY campaign.id"""
-
- stream = ga_service.search_stream(customer_id=customer_id, query=query)
- for batch in stream:
- for row in batch.results:
- print(
- f"Campaign with ID {row.campaign.id} and name "
- f'"{row.campaign.name}" was found.'
- )
- if __name__ == "__main__":
-
-
- googleads_client = GoogleAdsClient.load_from_storage(r"c:\gitlab\kw_tools\kw_tools\google-ads\google-ads.yaml",version="v10")
- parser = argparse.ArgumentParser(
- description="Lists all campaigns for specified customer."
- )
-
- parser.add_argument(
- "-c",
- "--customer_id",
- type=str,
- required=True,
- help="The Google Ads customer ID.",
- )
- args = parser.parse_args()
- try:
- main(googleads_client, args.customer_id)
- except GoogleAdsException as ex:
- print(
- f'Request with ID "{ex.request_id}" failed with status '
- f'"{ex.error.code().name}" and includes the following errors:'
- )
- for error in ex.failure.errors:
- print(f'\tError with message "{error.message}".')
- if error.location:
- for field_path_element in error.location.field_path_elements:
- print(f"\t\tOn field: {field_path_element.field_name}")
- sys.exit(1)
|