Skip to main content

Client library for the Google Ads API

Project description

This project hosts the Python client library for the Google Ads API.

Features

  • Distributed via PyPI.

  • Easy management of credentials.

  • Easy creation of Google Ads API service clients.

Requirements

  • Python 2.7.13+ / 3.5.3+

  • pip

Getting started

Installation

This library is distributed via PyPI. If you have not already done so, install pip, the following command to install this client library:

pip install google-ads

Configuration file setup

To authenticate your API calls, you must specify your client ID, client secret, refresh token, developer token, and, if you are authenticating with a manager account, a login customer id. If you have not yet created a client ID, see the Authorization guide and the authentication samples to get started. Likewise, see Obtain your developer token if you do not yet have one.

When initializing a GoogleAdsClient instance via the load_from_storage class method, the default behavior is to load a configuration file named google-ads.yaml located in your home directory. Included in this repository is a template you can use.

Create a GoogleAdsClient

You can run the following to retrieve a GoogleAdsClient instance using a configuration file named google-ads.yaml stored in your home directory:

client = google.ads.google_ads.client.GoogleAdsClient.load_from_storage()

Get types and service clients

You can use a GoogleAdsClient instance to retrieve any type or service used by the API. To retrieve a type such as a CampaignOperation, provide its name to the get_type method:

campaign_operation = client.get_type('CampaignOperation')

Likewise, you can provide the name of a service to get_service in order to retrieve the corresponding service client instance:

google_ads_service = client.get_service('GoogleAdsService')

Enabling and Configuring logging

The library uses Python’s built in logging framework. You can specify your configuration via the configuration file; see google-ads.yaml for an example. The library logs to stderr by default. You can easily pipe log messages to a file; when running an example:

python example.py args 2> example.log

It’s also possible to configure logging programmatically using Python’s built-in logging library by setting a logging configuration before initializing the client. You can retrieve the client logger instance and configure it with the following example:

logging.basicConfig(level=logging.INFO, format='[%(asctime)s - %(levelname)s] %(message).5000s')
logging.getLogger('google.ads.google_ads.client').setLevel(logging.INFO)

NOTE: The client logger is configured when the client is initialized, so if you have logger configurations in your google-ads.yaml file and you want to override them programmatically, you will need to call the above lines _before_ initializing the client, otherwise the configuration from yaml will take precedent as it’s provided first.

The client generates logs at a few different levels and you can set your configuration to see some or all of the below:

Level

Successful Request

Failed Request

DEBUG

A detailed log with complete request and response objects as JSON.

None

INFO

A concise summary with specific request and response fields.

A detailed log with complete request and exception objects as JSON.

WARNING

None

A concise summary with specific request information, the exception state and message.

Since the Python logging framework ignores log messages that are less severe than the configured level, setting to WARNING means you will only see concise messages related to failed requests, but setting to DEBUG means you will see all possible types of logs in the above table.

Miscellaneous

Authors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google-ads-0.7.0.tar.gz (513.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page