-
Notifications
You must be signed in to change notification settings - Fork 15
/
app.py
43 lines (29 loc) · 1.01 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
from flask import Flask, request, jsonify
from flask_restful import Api, Resource
from flask_cors import CORS, cross_origin
from scripts.show_random import send_results
from scripts import search_query, recoms
app = Flask(__name__)
app.config['CORS_HEADERS'] = 'Content-Type'
CORS(app, resources={r"*": {"origins": "*"}}, allow_headers="*", origin="*")
api = Api(app)
class Search(Resource):
@cross_origin()
def post(self):
param = request.json["search_param"]
search_results = search_query.query(param)
return jsonify({"search_results": search_results})
api.add_resource(Search, "/search")
class Recommend(Resource):
def post(self):
id = request.json["id"]
recommend = recoms.generate_recoms(id)
return recommend
api.add_resource(Recommend, "/recommend")
class RandomSongs(Resource):
def get(self):
song_list = send_results()
return song_list
api.add_resource(RandomSongs, "/random")
if __name__ == "__main__":
app.run(debug=True)