commit d4d984bff3cd524e0c56cc99bc7a96128316fff7 Author: J. Fernando Sánchez Date: Wed Jan 11 12:41:56 2017 +0100 diff --git a/jorge.py b/jorge.py new file mode 100644 index 0000000..749574b --- /dev/null +++ b/jorge.py @@ -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]