Make sentiment more usable
This commit is contained in:
@@ -78,18 +78,22 @@ def make_table(context):
|
||||
|
||||
|
||||
def make_graph(results):
|
||||
graph = json.dumps(
|
||||
[
|
||||
graph = []
|
||||
for index, item in enumerate(results):
|
||||
date = str(index)
|
||||
graph.append(
|
||||
{
|
||||
"text": item.get("msg", None) or item.get("id"),
|
||||
"text": item.get("tokens", None)
|
||||
or item.get("msg", None)
|
||||
or item.get("id"),
|
||||
"nick": item.get("nick", None),
|
||||
"channel": item.get("channel", None),
|
||||
"net": item.get("net", None),
|
||||
"value": item.get("sentiment", None) or None,
|
||||
"date": item.get("ts"),
|
||||
"date": date,
|
||||
}
|
||||
for item in results
|
||||
]
|
||||
)
|
||||
return graph
|
||||
)
|
||||
return json.dumps(graph)
|
||||
|
||||
|
||||
def drilldown_search(request, return_context=False, template=None):
|
||||
|
||||
Reference in New Issue
Block a user