From e5067d966892890a0eecc25f60844f111741ca4a Mon Sep 17 00:00:00 2001 From: jacopofar Date: Tue, 13 Mar 2018 17:50:50 +0100 Subject: [PATCH] Typos, upgrade bingads --- CHANGELOG.md | 5 +++++ README.md | 8 ++++---- bingads_downloader/cli.py | 2 +- setup.py | 4 ++-- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c1a4aa..8cbe7ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.2.2 +*2018-03-13 + +- cosmetic changes, upgrade bingads dependency + ## 1.2.1 *2017-01-10 diff --git a/README.md b/README.md index 28e315d..d347542 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,9 @@ A Python script for downloading performance data from the [BingAds API version 1 The Bing AdWords Performance Downloader requires: - Python (>= 3.5) - bingads (==11.5.5.1) - click (>=6.0) + Python (>= 3.6) + bingads (automatically installed by setup.py) + click (automatically installed by setup.py) The easiest way to install bing-adwords-downloader is using pip @@ -86,7 +86,7 @@ In order to access the BingAds API you have to obtain the OAuth2 credentials fro --oauth2_client_id 123456789 \ --oauth2_client_secret aBcDeFg -This will open a webbrowser to allow the OAuth2 credentials to access the API on your behalf. +This will open a web browser to allow the OAuth2 credentials to access the API on your behalf. ![](docs/oauth1.png) ![](docs/oauth2.png) diff --git a/bingads_downloader/cli.py b/bingads_downloader/cli.py index a6ae1f2..217c51a 100644 --- a/bingads_downloader/cli.py +++ b/bingads_downloader/cli.py @@ -1,4 +1,4 @@ -"""Command line interface for adwords downloader""" +"""Command line interface for Bing downloader""" import sys diff --git a/setup.py b/setup.py index 55154a9..865f87e 100644 --- a/setup.py +++ b/setup.py @@ -2,12 +2,12 @@ setup( name='bingads-performance-downloader', - version='1.2.1', + version='1.2.2', description="Downloads data from the BingAds Api to local files for usage in a data warehouse", install_requires=[ - 'bingads==11.5.5.1', + 'bingads==11.5.8', 'click>=6.0' ],