We faced some issues with loading reports with using Python Api.  The 
GEO_PERFORMANCE_REPORT is empty always, meanwhile 
CAMPAIGN_PERFORMANCE_REPORT is loading well. 
client_customer_id=6882030488

We are using scripts in Google Ads right now. However, it would be better 
for us to use Python Api.


_report_fields = [
"Date",
"CountryCriteriaId",
"AccountDescriptiveName",
"AdNetworkType1",
"CampaignName",
"CampaignId",
"CampaignStatus",
"Clicks",
"Impressions",
"Cost",
"Conversions"
]

query = (adwords.ReportQueryBuilder()
.Select(*_report_fields)
#.From("CAMPAIGN_PERFORMANCE_REPORT")
.From("GEO_PERFORMANCE_REPORT")
.During('TODAY')
.Build())

report_downloader = adwords_client.GetReportDownloader()

data = report_downloader.DownloadReportAsStringWithAwql(
query,
'CSV',
client_customer_id=6882030488,
skip_report_header=True,
skip_column_header=True,
skip_report_summary=True
)

Could anyone help us with this issue?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0f569adb-d1d7-4f2f-bbd3-23762d5ae63an%40googlegroups.com.

Reply via email to