-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
73 lines (58 loc) · 2.35 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
from flask import Flask,render_template,request
import pickle
import numpy as np
popular_df = pickle.load(open('popular.pkl','rb'))
pt = pickle.load(open('pt.pkl','rb'))
books = pickle.load(open('books.pkl','rb'))
similarity_scores = pickle.load(open('similarity_scores.pkl','rb'))
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
@app.route('/home')
def home_ui():
return render_template('home.html',book_name = list(popular_df['Book-Title'].values),
author=list(popular_df['Book-Author'].values),
image=list(popular_df['Image-URL-M'].values),
votes=list(popular_df['num_ratings'].values),
rating=list(popular_df['avg_ratings'].values)
)
@app.route('/recommend')
def recommend_ui():
return render_template('recommend.html')
def indx_book(book):
i=0
while (i<len(pt.index)):
if (book.lower() in pt.index[i].lower()):
return i
else:
i+=1
@app.route('/recommend_books',methods=['post'])
def recommend():
user_input = request.form.get('user_input')
index = indx_book(user_input)
similar_items = sorted(list(enumerate(similarity_scores[index])), key=lambda x: x[1], reverse=True)[1:8]
data = []
matched = []
df_matched = books[books['Book-Title'] == pt.index[index]]
matched.extend(list(df_matched.drop_duplicates('Book-Title')['Book-Title'].values))
matched.extend(list(df_matched.drop_duplicates('Book-Title')['Book-Author'].values))
matched.extend(list(df_matched.drop_duplicates('Book-Title')['Image-URL-M'].values))
data.append(matched)
for i in similar_items:
item = []
temp_df = books[books['Book-Title'] == pt.index[i[0]]]
item.extend(list(temp_df.drop_duplicates('Book-Title')['Book-Title'].values))
item.extend(list(temp_df.drop_duplicates('Book-Title')['Book-Author'].values))
item.extend(list(temp_df.drop_duplicates('Book-Title')['Image-URL-M'].values))
data.append(item)
if (len(data) != 0):
print(data)
else:
print("book not available")
return render_template('recommend.html',data = data)
@app.route('/contact')
def contact_ui():
return render_template('contact.html')
if __name__ == '__main__':
app.run(debug=True)