From 755058f7a1367d70ab651174c2830c6ca2fbe510 Mon Sep 17 00:00:00 2001 From: Alexander Schaefer Date: Thu, 2 Mar 2017 14:17:14 +0100 Subject: [PATCH] changed default output filename --- README.md | 4 ++-- bingads_downloader/config.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a81c947..dedc5b4 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ A Python script for downloading performance data from the [BingAds API version 9 ## Resulting data **BingAds Performance Downloader** gives measures such as impressions, clicks and cost. The script creates one csv file per day in a specified time range: - /tmp/bingads/2016/05/02/bing/download.csv - /tmp/bingads/2016/05/03/bing/download.csv + /tmp/bingads/2016/05/02/bing/ad_performance.csv.gz + /tmp/bingads/2016/05/03/bing/ad_performance.csv.gz Each line contains one ad for one day: diff --git a/bingads_downloader/config.py b/bingads_downloader/config.py index ce8fa56..6732120 100644 --- a/bingads_downloader/config.py +++ b/bingads_downloader/config.py @@ -10,7 +10,7 @@ def data_dir() -> str: def data_file() -> str: """The name of the file the result is written to""" - return 'download.csv.gz' + return 'ad_performance.csv.gz' def first_date() -> str: