Hello, i have a question with "Impressions" field, *is not match *in Google 
Ads Manager
in the attachs file is show the result that i request with python3
* date range in Google Ads Manager are set as same as the Query


a reproduce code is down below

def dynamicAdsPerformance(client):
    report_downloader = client.GetReportDownloader(version='v201809')
    report_query = (adwords.ReportQueryBuilder()
                  .Select(
                    'CampaignId', 
                    'CampaignName', 
                    'Domain',
                    'Clicks', 
                    'Cost', 
                    'Impressions', 
                    'Ctr', 
                    'AverageCpc', 
                    'Conversions', 
                    'ConversionRate',
                    'CostPerConversion')
                  .From('KEYWORDLESS_CATEGORY_REPORT')
                  .Where('CampaignStatus').In('ENABLED')
                  .During('YESTERDAY')
                  .Build())

    report_downloader.DownloadReportWithAwql(
            report_query,
            'CSV', 
            sys.stdout, 
            skip_report_header=False,
            skip_column_header=False, 
            skip_report_summary=False,
            )

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/250dc3a3-fdaf-406b-aad2-2b4bc0224150%40googlegroups.com.

Reply via email to