Passing in a root_url variable and pulling config from environment variables

This commit is contained in:
Anne Carlson
2015-02-27 16:32:32 -05:00
committed by Madison May
parent a1621e8531
commit 6b9251f4f5
7 changed files with 39 additions and 37 deletions
+5 -4
View File
@@ -1,8 +1,9 @@
from indicoio.utils import api_handler
import indicoio.config as config
def language(api_root, text, batch=False, auth=None, **kwargs):
def language(text, url_root=config.api_root, batch=False, auth=None, **kwargs):
"""
Given input text, returns a probability distribution over 33 possible
Given input text, returns a probability distribution over 33 possible
languages of what language the text was written in.
Example usage:
@@ -22,5 +23,5 @@ def language(api_root, text, batch=False, auth=None, **kwargs):
:type text: str or unicode
:rtype: Dictionary of language probability pairs
"""
return api_handler(text, api_root + "language", batch=batch, auth=auth, **kwargs)
return api_handler(text, url_root + "language", batch=batch, auth=auth, **kwargs)
+7 -6
View File
@@ -1,7 +1,8 @@
from indicoio import JSON_HEADERS
from indicoio.utils import api_handler
import indicoio.config as config
def political(api_root, text, batch=False, auth=None, **kwargs):
def political(text, url_root=config.api_root, batch=False, auth=None, **kwargs):
"""
Given input text, returns a probability distribution over the political alignment of the speaker.
@@ -15,7 +16,7 @@ def political(api_root, text, batch=False, auth=None, **kwargs):
Hopefully, driverless cars will chance economics from ownership to fee for service.'
>>> affiliation = political(text)
>>> affiliation
{u'Libertarian': 0.4923755446986322, u'Green': 0.2974443102818122,
{u'Libertarian': 0.4923755446986322, u'Green': 0.2974443102818122,
u'Liberal': 0.13730032938784784, u'Conservative': 0.07287981563170784}
>>> least_like = affiliation.keys()[np.argmin(affiliation.values())]
>>> most_like = affiliation.keys()[np.argmax(affiliation.values())]
@@ -27,9 +28,9 @@ def political(api_root, text, batch=False, auth=None, **kwargs):
:rtype: Dictionary of party probability pairs
"""
return api_handler(text, api_root + "political", batch=batch, auth=auth, **kwargs)
return api_handler(text, url_root + "political", batch=batch, auth=auth, **kwargs)
def posneg(api_root, text, batch=False, auth=None, **kwargs):
def posneg(text, url_root=config.api_root, batch=False, auth=None, **kwargs):
"""
Given input text, returns a scalar estimate of the sentiment of that text.
Values are roughly in the range 0 to 1 with 0.5 indicating neutral sentiment.
@@ -49,5 +50,5 @@ def posneg(api_root, text, batch=False, auth=None, **kwargs):
:type text: str or unicode
:rtype: Float
"""
return api_handler(text, api_root + "sentiment", batch=batch, auth=auth, **kwargs)
return api_handler(text, url_root + "sentiment", batch=batch, auth=auth, **kwargs)
+4 -3
View File
@@ -1,6 +1,7 @@
from indicoio.utils import api_handler
import indicoio.config as config
def text_tags(api_root, text, batch=False, auth=None, **kwargs):
def text_tags(text, url_root=config.api_root, batch=False, auth=None, **kwargs):
"""
Given input text, returns a probability distribution over 100 document categories
@@ -21,5 +22,5 @@ def text_tags(api_root, text, batch=False, auth=None, **kwargs):
:type text: str or unicode
:rtype: Dictionary of class probability pairs
"""
return api_handler(text, api_root + "texttags", batch=batch, auth=auth, **kwargs)
return api_handler(text, url_root + "texttags", batch=batch, auth=auth, **kwargs)