mirror of
https://github.com/balkian/gists.git
synced 2024-11-01 08:01:44 +00:00
d1c1d68377
git-subtree-dir: repos/a6e97dcbb3b4bc295b64bc2d6325de94 git-subtree-mainline:f9dbd3754c
git-subtree-split:d4d984bff3
11 lines
329 B
Python
11 lines
329 B
Python
import json
|
|
from senpy import Client
|
|
|
|
client = Client('http://senpy.cluster.gsi.dit.upm.es')
|
|
|
|
with open('madrid.json', 'r') as f:
|
|
for line in f:
|
|
tweet = json.loads(line.strip())
|
|
results = client.analyse(input=tweet['text'], algorithm='sentiText')
|
|
tweet['sentiment'] = results.entries[0].sentiments[0]
|