Posts under category google-ads-api

Any idea how I can dynamically instantiate AssetOperation in GoogleAds python client?

I'm getting:

TypeError: 'AssetOperation' object is not callable 

In code:

        for video_name, video_id in video_name_id_list:             # Dynamically create an instance of AssetOperation >           asset_operation = self.asset_operation_type(                 create={                     'name': video_name,                     'youtube_video_asset': {'youtube_video_id': video_id}                 }             ) E           TypeError: 'AssetOperation' object is not callable 

Here are my tries:

or:

When I use this:

I have been working with the Google Ads API to generate keyword ideas using the Keyword Planner. The script works perfectly fine on macOS, and I've tested it on multiple Mac machines without any issues. However, when I try to run the same script on an Ubuntu machine, it fails with the following error:

root@545d9b292810:/app# python3 generate_keyword_ideas.py --customer_id 473727 Traceback (most recent call last):   File "/usr/local/lib/python3.8/dist-packages/google/ads/googleads/client.py", line 203, in _get_api_services_by_version     version_module = import_module(f"google.ads.googleads.{version}")   File "/usr/lib/python3.8/importlib/__init__.py", line 127, in import_module     return _bootstrap._gcd_import(name[level:], package, level)   File "<frozen importlib._bootstrap>", line 1014, in _gcd_import   File "<frozen importlib._bootstrap>", line 991, in _find_and_load   File "<frozen importlib._bootstrap>", line 973, in _find_and_load_unlocked ModuleNotFoundError: No module named 'google.ads.googleads.v17' During handling of the above exception, another exception occurred: Traceback (most recent call last):   File "generate_keyword_ideas.py", line 176, in <module>     main(   File "generate_keyword_ideas.py", line 38, in main     keyword_plan_idea_service = client.get_service("KeywordPlanIdeaService")   File "/usr/local/lib/python3.8/dist-packages/google/ads/googleads/client.py", line 356, in get_service     api_module = self._get_api_services_by_version(version)   File "/usr/local/lib/python3.8/dist-packages/google/ads/googleads/client.py", line 205, in _get_api_services_by_version     raise ValueError( ValueError: Specified Google Ads API version "v17" does not exist. Valid API versions are: "v11", "v10", "v9" 

What I've Tried: I have confirmed that the Google Ads API library version 17.0.0 is installed on both macOS and Ubuntu. The Python version on Ubuntu is 3.8, and I ensured that all dependencies are correctly installed. I’ve tried reinstalling the google-ads package and even setting up a fresh virtual environment. The script works flawlessly on macOS, so the issue seems to be specific to Ubuntu.

The script should run on Ubuntu just as it does on macOS without throwing the "Specified Google Ads API version 'v17' does not exist" error.

Specifications: Python version: 3.8 on Ubuntu Google Ads API library version: 17.0.0 OS: Ubuntu 20.04

just wondering if someone can help me with this issue: I am trying to run a code in a lambda function and I have created a layer for this using a docker to create the needed libs:

# Use an official Amazon w/python3 FROM public.ecr.aws/lambda/python:3.9 # Create and activate a virtual environment RUN python3.9 -m venv /app/venv ENV PATH="/app/venv/bin:$PATH" # Install required packages COPY . . RUN pip3 install --upgrade pip RUN pip3 install --platform manylinux2014_x86_64 --target ./venv/lib/python3.9/site-packages --python-version 3.9 --only-binary=:all:  -r requirements.txt 
when i upload the function code and test it i am receiving this error: [ERROR] Runtime.ImportModuleError: Unable to import module 'google_conversion_lambda': google-ads Traceback (most recent call last):INIT_REPORT Init Duration: 3853.19 ms Phase: init Status: error   Error Type: Runtime.Unknown [ERROR] Runtime.ImportModuleError: Unable to import module 'google_conversion_lambda': google-ads Traceback (most recent call last):INIT_REPORT Init Duration: 25715.69 ms    Phase: invoke   Status: error   Error Type: Runtime.Unknown 

the import is coded like this:

from google.ads.googleads.client import GoogleAdsClient 

its is weird and I am running out of ideas to try. Any suggestions or other leads that I can try?

I already tried:

  1. On the code Zip file include all the google libraries needed along with the function.
  2. Rebuilding as a layer, with other building methods using the docker.

Both shows the same results.

EDIT: Just to let you know the issue here is that I was zipping the files on a windows environment and even the zipping process should happen inside the docker environment (Linux) after that we are good to export the zip file and update the layer.

I've tried to get reports via Google Ads API. Most metrics can be gathered through this api except app installation conversions.

I need to get all metrics on ad group level but Google only support that metric on asset level (ad_group_ad_asset_view table).

Is there any way to count app installation on ad group level? (I've just summed up each metric from the result of ad_group_ad_asset_view but it does not match with the view from Report UI, of course)

I'm using the Google Ads API, and with the docs about the status: https://developers.google.com/google-ads/api/reference/rpc/v17/CampaignStatusEnum.CampaignStatus

It show that is a ENUM with string values. But when I do the query:

 SELECT                     campaign.id,                     campaign.name,                     campaign.status,                     campaign.start_date,                     campaign.end_date                 FROM campaign                 ORDER BY campaign.name 

the status show a number between 1 and 4 (at least that numbers I see, idk if is more options).

Any have a documentation about what means each number? or if i'm missing something in the query to get string enum?

Thanks