-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
78 lines (61 loc) · 2.39 KB
/
app.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
from __future__ import annotations
import json
import os
import sqlite3
from datetime import datetime
from typing import Any, Callable
import database
import in_memory
# from dotenv import load_dotenv
from flask import Flask, jsonify, request
from flask_cors import CORS
# load_dotenv()
app = Flask(__name__)
PORT = os.getenv("PORT")
if PORT is not None:
PORT = int(PORT)
else:
PORT = 8000
CORS(app)
@app.route("/")
@app.route("/test/")
def hello():
return {"success": True, "message": "The backend is working"}
# route to get avergae sentiments and number of posts grouped by platform and date
# start_date and end_date should be in yyyy-mm-dd format
# if no start date or end date specified by the user, use 2014-12-31 for start_date and 'now()' for end_date
# key_words should be a string of words separated by spaces
# @app.route("/start_date/<start_date>/end_date/<end_date>/key_words/<key_words>")
# def get_sentiments(start_date, end_date, key_words):
# query = sql_sentiments(start_date, end_date, key_words)
# return database.json_from_query(query)
# @app.route("/sql/start_date/<start_date>/end_date/<end_date>/key_words/<key_words>")
# def sql_sentiments(start_date, end_date, key_words):
# if key_words == "":
# query = (
# "SELECT count(*) AS num_posts, avg(sentiment) AS avg_sentiment FROM data "
# "WHERE (date BETWEEN '" + start_date + "' AND '" + end_date + "')"
# )
# else:
# query = (
# "SELECT * FROM "
# "(SELECT id, count(*) AS num_posts, avg(sentiment) AS avg_sentiment FROM data "
# "WHERE (date BETWEEN '" + start_date + "' AND '" + end_date + "')) "
# "AS a JOIN "
# f"(SELECT * FROM posts WHERE bodyText MATCH '{key_words}')"
# "WHERE a.id = posts.id"
# )
# query += " GROUP BY platform, date"
# return query
# API routing
app.route("/events")(in_memory.get_events)
app.route("/start_date/<start_date>/end_date/<end_date>/key_words/<key_words>")(
in_memory.get_sentiments
)
app.route("/api/getPlatformFrequencies")(in_memory.get_platform_freq)
app.route("/api/getBagOfWords")(in_memory.get_bag_of_words)
app.route("/api/getSummary")(in_memory.get_summary)
app.route("/api/getBodyText")(in_memory.get_body_text)
app.route("/schema")(lambda: database.__doc__)
if __name__ == "__main__":
app.run(debug=True, host="0.0.0.0", port=PORT)