-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
51 lines (44 loc) · 1.45 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import json
import os
from contextual import contextual
from regressor import regressor
from flask import Flask
app = Flask(__name__)
cont = contextual()
regr = regressor("data1.txt")
@app.route("/context_analyze/<post_id>")
def onlycontext(post_id):
print("hit flask" + post_id)
comments = sorted(cont.build(post_id).iteritems(), key=lambda kv: (kv[1],kv[0]),reverse=True)
comms=[]
for comment in comments:
temp=dict()
temp["comment"]=comment
temp["score"]=comments[comment]
comms.append(temp)
return json.dumps(comms)
@app.route("/regressor1/<post_id>")
def onlyregressor1(post_id):
print("hit flask" + post_id)
comments = sorted(regr.build(post_id).iteritems(), key=lambda kv: (kv[1],kv[0]),reverse=True)
return json.dumps(comments)
@app.route("/combined/<post_id>")
def combined(post_id):
print("hit flask" + post_id)
com1=cont.build(post_id)
com2=regr.build(post_id)
comments=dict()
for key in com1:
comments[key] = int(com1[key] * com2[key])
comments = sorted(comments.iteritems(), key=lambda kv: (kv[1],kv[0]),reverse=True)
comms=[]
for comment in comments:
temp=dict()
temp["comment"]=comment[0]
temp["score"] = comment[1]
comms.append(temp)
print "Completed"
return json.dumps(comms)
if __name__ == "__main__":
heroku_port = int(os.environ.get("PORT", 8080))
app.run(host='0.0.0.0', port=heroku_port)