mirror of
https://github.com/balkian/gists.git
synced 2024-11-24 02:12:29 +00:00
This commit is contained in:
commit
d4d984bff3
10
jorge.py
Normal file
10
jorge.py
Normal file
@ -0,0 +1,10 @@
|
||||
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]
|
Loading…
Reference in New Issue
Block a user