mirror of
https://github.com/wassname/IndicoIo-python.git
synced 2026-06-27 16:10:34 +08:00
FIX: Version number update 0.7.0
This commit is contained in:
+1
-1
@@ -22,4 +22,4 @@ v0.5.0, Friday Feb 27 -- Updated to support private cloud, allows for indicorc f
|
||||
v0.5.1, Friday Feb 27 -- More README updates, fixed rst formatting issue, added classifiers
|
||||
v0.5.2, Tue March 7 -- Required API keys, configuration settings
|
||||
v0.5.3, Wed Apr 15 -- Added scipy to requirements, edited Readme to not break pypi page
|
||||
v0.6.0, Thu May 29 -- Remove numpy / scipy dependency in favor of Pillow
|
||||
v0.6.0, Thu May 29 -- Remove numpy / scipy dependency in favor of Pillow
|
||||
|
||||
@@ -15,7 +15,7 @@ pip install indicoio
|
||||
|
||||
From source:
|
||||
```bash
|
||||
git clone https://github.com/IndicoDataSolutions/IndicoIo-python.git
|
||||
git clone https://github.com/IndicoDataSolutions/IndicoIo-python.git
|
||||
python setup.py install
|
||||
```
|
||||
|
||||
@@ -62,7 +62,7 @@ Examples
|
||||
>>> text_tags(test_text, top_n=1) # return only keys with top_n values
|
||||
{u'startups_and_entrepreneurship': 0.21888586688354486}
|
||||
|
||||
>>> import numpy as np
|
||||
>>> import numpy as np
|
||||
|
||||
>>> test_face = np.linspace(0,50,48*48).reshape(48,48).tolist()
|
||||
|
||||
|
||||
@@ -4,10 +4,10 @@ JSON_HEADERS = {
|
||||
'Content-type': 'application/json',
|
||||
'Accept': 'application/json',
|
||||
'client-lib': 'python',
|
||||
'version-number': '0.6.0'
|
||||
'version-number': '0.7.0'
|
||||
}
|
||||
|
||||
Version, version, __version__, VERSION = ('0.6.0',) * 4
|
||||
Version, version, __version__, VERSION = ('0.7.0',) * 4
|
||||
|
||||
from indicoio.text.sentiment import political, posneg
|
||||
from indicoio.text.sentiment import posneg as sentiment
|
||||
|
||||
Reference in New Issue
Block a user