Skip to content

Commit

Permalink
changed default output filename
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Schaefer committed Mar 2, 2017
1 parent 04fa509 commit 755058f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion bingads_downloader/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 755058f

Please sign in to comment.