I was trying to pull information from the KEYWORDLESS_QUERY_REPORT, I was 
able to pass the function, however the date returned is blank:

def main(client):
  # Initialize appropriate service.
  report_downloader = client.GetReportDownloader(version='v201809')

  # Create report query.
  report_query = (adwords.ReportQueryBuilder()
                  .Select('CampaignId',
                  'CampaignName','AdGroupId', 'AdGroupName', 'AdGroupStatus'
, 'Query','QueryTargetingStatus', 'Clicks'
                  )
                  .From('KEYWORDLESS_QUERY_REPORT')
                  .During(start_date='20191001', end_date='20200121')
                  .Build())

  # You can provide a file object to write the output to. For this
  # demonstration we use sys.stdout to write the report to the screen.
  report_downloader.DownloadReportWithAwql(
      report_query, 'CSV', output, skip_report_header=True,
      skip_column_header=False, skip_report_summary=True)
  output.seek(0)
  df = pd.read_csv(output)
  df.sort_values(by=['Campaign'], ascending=True, inplace=True)
  df = df.to_csv('Seach Terms Report.csv', index=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 [email protected]
To unsubscribe from this group, send email to
[email protected]
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/7273227f-bee1-456b-9dc4-701626ca02fe%40googlegroups.com.

Reply via email to