From 99d78295cfefc060606d3c53c13950a8a23fff42 Mon Sep 17 00:00:00 2001 From: Madison May Date: Thu, 25 Sep 2014 17:27:06 -0400 Subject: [PATCH] Updated change log and authors --- AUTHORS | 7 ++++--- CHANGES.txt | 3 ++- README | 5 +++++ README.md | 3 +-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/AUTHORS b/AUTHORS index 65ce50e..2aed9bb 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ -Slater Victoroff -Alec Radford -Aidan McLaughlin +Slater Victoroff +Alec Radford +Aidan McLaughlin +Madison May diff --git a/CHANGES.txt b/CHANGES.txt index 79f07c8..3a6f273 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,4 +9,5 @@ v0.4.0, Fri Aug 1 -- Changed api import to lowercase, added language example v0.4.1, Fri Aug 1 -- Updated __version__ variable to be accurate v0.4.2, Wed Aug 6 -- Updated README to accurately reflect political analysis results v0.4.3, Thu Sep 11 -- Added image features api and sphinx compliant documentation -v0.4.4, Thu Sep 25 -- Added dependencies installation to setup.py \ No newline at end of file +v0.4.4, Thu Sep 25 -- Added dependencies installation to setup.py +v0.4.5, Thu Sep 25 -- Added interface to local indico server diff --git a/README b/README index 12869f1..95cec92 100644 --- a/README +++ b/README @@ -55,7 +55,12 @@ Examples >>> sorted(language_dict.keys(), key=lambda x: language_dict[x], reverse=True) [u'Latin', u'Dutch', u'Greek', u'Portuguese', u'Spanish', u'Chinese', u'Lithuanian', u'Korean', u'Finnish', u'Persian (Farsi)', u'Hungarian', u'Danish', u'Norwegian', u'Japanese', u'Tagalog', u'Turkish', u'Swedish', u'Vietnamese', u'Russian', u'Esperanto', u'French', u'Arabic', u'English', u'German', u'Czech', u'Polish', u'Slovak', u'Thai', u'Bulgarian', u'Hebrew', u'Romanian', u'Italian', u'Indonesian'] +``` +If you have a local indico server running, simply import from `indicoio.local`. + +``` +>>> from indicoio.local import political, sentiment, fer, facial_features, language ``` Installation diff --git a/README.md b/README.md index 9b063c2..9a84123 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Examples Local -------- -When using a local version of the api you must remember to import '.local', otherwise it functions the exact same as the remote api documented above. +When using a local version of the api you must remember to import '.local', otherwise it functions the exact same as the remote api documented above. Local API versions are not yet available at this point in time. ``` >>> from indicoio.local import sentiment @@ -71,7 +71,6 @@ When using a local version of the api you must remember to import '.local', othe ``` - Installation ------------ ```