diff --git a/CHANGES.txt b/CHANGES.txt index 79f806a..a671078 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -29,3 +29,4 @@ v0.7.2 Thu Jun 11 -- Remove sentiment_hq from text apis by default v0.7.3 Wed Jun 17 -- Fixes for handling of specific image types v0.7.4 Mon Jun 22 -- Fix for setup.py issues v0.7.5 Wed Jul 1 -- Public access to sentimentHQ api +v0.7.6 Tue Jul 7 -- Add Keywords API diff --git a/indicoio/__init__.py b/indicoio/__init__.py index 50a3ea5..452f4bf 100644 --- a/indicoio/__init__.py +++ b/indicoio/__init__.py @@ -1,6 +1,6 @@ from functools import partial -Version, version, __version__, VERSION = ('0.7.5',) * 4 +Version, version, __version__, VERSION = ('0.7.6',) * 4 JSON_HEADERS = { 'Content-type': 'application/json', diff --git a/indicoio/utils/api.py b/indicoio/utils/api.py index f06e2fa..836b243 100644 --- a/indicoio/utils/api.py +++ b/indicoio/utils/api.py @@ -29,8 +29,6 @@ def api_handler(arg, cloud, api, url_params = {"batch":False, "api_key":None}, * if apis: url += "&apis=%s" % ",".join(apis) - print url - response = requests.post(url, data=json_data, headers=JSON_HEADERS) if response.status_code == 503 and cloud != None: raise IndicoError("Private cloud '%s' does not include api '%s'" % (cloud, api)) diff --git a/setup.py b/setup.py index eb0b590..7683c2e 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ except ImportError: setup( name="IndicoIo", - version="0.7.5", + version="0.7.6", packages=[ "indicoio", "indicoio.text",