-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontend.py
301 lines (218 loc) · 11.2 KB
/
frontend.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
import backend
import tkinter as tk
import tkinter.messagebox
from tkinter import *
import matplotlib
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure
from PIL import ImageTk
import csv
import os
def frontend(res):
path = os.getcwd()
window = tk.Tk()
#Name the window
window.title('Welcome to Quadruple Z')
#Define the dimension of window
window.geometry('800x800')
#image
canvas = tk.Canvas(window, height = 200, width = 1000)
image_file = ImageTk.PhotoImage(file= path + '/Welcome.jpg')
image = canvas.create_image(0, 0, anchor = 'nw', image = image_file)
canvas.pack(side='top')
#Title
tk.Label(window, text='To Empower People To Make Smart Investment Decisions!!',font=('Arial', 24)).pack()
#Name of entries
tk.Label(window, text='Enter the Zip Code for house listings:', font=('Arial', 14)).place(x=10, y=250)
tk.Label(window, text='Choose the Zip Code from our database', font=('Arial', 14)).place(x=10, y=300)
tk.Label(window, text='OR', font=('Arial', 14)).place(x=150, y=270)
tk.Label(window, text='If the search is not successful, please try to type your Zip Code in your console to test (which is highly possible).', fg='red',font=('Arial', 14)).place(x=10, y=400)
# Enter zipcode
live_zipcode = tk.StringVar()
live_zipcode.set(' ')
entry_zipcode = tk.Entry(window, textvariable=live_zipcode, font=('Arial', 14))
entry_zipcode.place(x=280,y=250)
# Dropdown box
db_zipcode = tk.StringVar(master = window)
db_zipcode.set('15232')
drop = OptionMenu(window, db_zipcode, '15213',
'15232', '15222',
'15217', '15219',
'19104', '19103',
'19122', '19134', '19148')
drop.pack()
drop.place(x=280, y=300)
global webscraping_zipcode
global database_zipcode
def contents():
global webscraping_zipcode
global database_zipcode
webscraping_zipcode = live_zipcode.get()
database_zipcode = db_zipcode.get()
if webscraping_zipcode == ' ':
is_livescraping = False
zip_code = database_zipcode
if webscraping_zipcode != ' ':
is_livescraping = True
zip_code = webscraping_zipcode
return zip_code, is_livescraping
def search_zipcode():
global webscraping_zipcode
global database_zipcode
webscraping_zipcode = live_zipcode.get()
database_zipcode = db_zipcode.get()
root = tk.Tk()
root.title('Search Completed')
root.geometry('800x800')
def house_df():
filepath = path + '/result_house.csv'
File = open(filepath)
Reader = csv.reader(File)
Data = list(Reader)
del(Data[0])
list_of_entries = []
for x in list(range(0,len(Data))):
list_of_entries.append(Data[x][5])
root=tk.Tk()
root.title('Houses Information')
root.geometry('500x450')
var = StringVar(value = list_of_entries,master= window)
listbox1 = Listbox(root, listvariable = var)
listbox1.grid(row=0, column=0)
def update():
index = listbox1.curselection()[0]
zipcodelabel2.config(text = Data[index][0])
pricelabel2.config(text = Data[index][1])
bedroomlabel2.config(text = Data[index][2])
bathroomlabel2.config(text = Data[index][3])
arealabel2.config(text = Data[index][4])
addresslabel2.config(text = Data[index][5])
citylabel2.config(text = Data[index][6])
statelabel2.config(text = Data[index][7])
return None
button1 = Button(root, text='Show house Info', command=update)
button1.grid(row=11,column=0)
zipcodelabel = Label(root,text='Zip Code').grid(row=1,column=0,sticky='w')
pricelabel = Label(root,text='House Price').grid(row=2,column=0,sticky='w')
bedroomlabel = Label(root,text='# Bedrooms').grid(row=3,column=0,sticky='w')
bathroomlabel = Label(root,text='# Bathrooms').grid(row=4,column=0,sticky='w')
arealabel = Label(root,text='Area in sqft').grid(row=5,column=0,sticky='w')
addresslabel = Label(root,text='Address').grid(row=6,column=0,sticky='w')
citylabel = Label(root,text='City').grid(row=7,column=0,sticky='w')
statelabel = Label(root,text='State').grid(row=8,column=0,sticky='w')
zipcodelabel2 = Label(root,text='')
zipcodelabel2.grid(row=1,column=1,sticky='w')
pricelabel2 = Label(root,text='')
pricelabel2.grid(row=2,column=1,sticky='w')
bedroomlabel2 = Label(root,text='')
bedroomlabel2.grid(row=3,column=1,sticky='w')
bathroomlabel2 = Label(root,text='')
bathroomlabel2.grid(row=4,column=1,sticky='w')
arealabel2 = Label(root,text='')
arealabel2.grid(row=5,column=1,sticky='w')
addresslabel2 = Label(root,text='')
addresslabel2.grid(row=6,column=1,sticky='w')
citylabel2 = Label(root,text='')
citylabel2.grid(row=7,column=1,sticky='w')
statelabel2 = Label(root,text='')
statelabel2.grid(row=8,column=1,sticky='w')
root.mainloop()
return list_of_entries
#houses_testing.houses_info()
def race_Img():
r = Toplevel()
r.title('Ethnicity Results')
canvas = Canvas(r, width = 1600, height = 800)
canvas.pack()
#change to real csv race jpg
image_file = ImageTk.PhotoImage(file = path + '/race_result.jpg')
image = canvas.create_image(0, 0, anchor = 'nw',image = image_file)
r.mainloop()
def school_df():
filepath = path + '/result_school.csv'
File = open(filepath)
Reader = csv.reader(File)
Data = list(Reader)
del(Data[0])
list_of_entries = []
for x in list(range(0,len(Data))):
list_of_entries.append(Data[x][1])
root=tk.Tk()
root.title('School Information')
root.geometry('500x450')
var = StringVar(value = list_of_entries)
listbox1 = Listbox(root, listvariable = var)
listbox1.grid(row=0, column=0)
def update():
index = listbox1.curselection()[0]
zipcodelabel2.config(text = Data[index][0])
schoollabel2.config(text = Data[index][1])
MathProficiencylabel2.config(text = Data[index][2])
ReadingProficicencylabel2.config(text = Data[index][3])
gradeslabel2.config(text = Data[index][4])
locationlabel2.config(text = Data[index][5])
distancelabel2.config(text = Data[index][6])
studentslabel2.config(text = Data[index][7])
telephonelabel2.config(text = Data[index][8])
detailslabel2.config(text = Data[index][9])
return None
button1 = Button(root, text='Show School Info', command=update)
button1.grid(row=11,column=0)
zipcodelabel = Label(root,text='Zip Code').grid(row=1,column=0,sticky='w')
schoollabel = Label(root,text='school').grid(row=2,column=0,sticky='w')
MathProficiencylabel = Label(root,text='Math Proficiency').grid(row=3,column=0,sticky='w')
ReadingProficicencylabel = Label(root,text='Reading Proficiency').grid(row=4,column=0,sticky='w')
gradeslabel = Label(root,text='Grades').grid(row=5,column=0,sticky='w')
locationlabel = Label(root,text='Location').grid(row=6,column=0,sticky='w')
distancelabel = Label(root,text='Distance').grid(row=7,column=0,sticky='w')
studentslabel = Label(root,text='Students').grid(row=8,column=0,sticky='w')
telephonelabel = Label(root,text='Telephone').grid(row=9,column=0,sticky='w')
detailslabel = Label(root,text='Details').grid(row=10,column=0,sticky='w')
zipcodelabel2 = Label(root,text='')
zipcodelabel2.grid(row=1,column=1,sticky='w')
schoollabel2 = Label(root,text='')
schoollabel2.grid(row=2,column=1,sticky='w')
MathProficiencylabel2 = Label(root,text='')
MathProficiencylabel2.grid(row=3,column=1,sticky='w')
ReadingProficicencylabel2 = Label(root,text='')
ReadingProficicencylabel2.grid(row=4,column=1,sticky='w')
gradeslabel2 = Label(root,text='')
gradeslabel2.grid(row=5,column=1,sticky='w')
locationlabel2 = Label(root,text='')
locationlabel2.grid(row=6,column=1,sticky='w')
distancelabel2 = Label(root,text='')
distancelabel2.grid(row=7,column=1,sticky='w')
studentslabel2 = Label(root,text='')
studentslabel2.grid(row=8,column=1,sticky='w')
telephonelabel2 = Label(root,text='')
telephonelabel2.grid(row=9,column=1,sticky='w')
detailslabel2 = Label(root,text='')
detailslabel2.grid(row=10,column=1,sticky='w')
root.mainloop()
def price_Img():
p = Toplevel()
p.title('Housing price changes results')
canvas = Canvas(p,width = 800, height = 800)
canvas.pack()
#change to real csv price jpg
image_file = ImageTk.PhotoImage(file = path + '/time_series.jpg')
image = canvas.create_image(0, 0, anchor = 'nw',image = image_file)
p.mainloop()
summary = tk.Label(root, text=res, font=('Arial',12), width=50, height=50)
summary.place(x = 10, y = 180)
btn = Button(root, text = 'Click here to see house results', command = house_df)
btn.place(x = 10, y = 20)
btn = Button(root, text = 'Click here to see housing price changes results', command = price_Img)
btn.place(x = 10, y = 60)
btn = Button(root, text = 'Click here to see school results', command = school_df)
btn.place(x = 10, y = 100)
btn = Button(root, text = 'Click here to see ethnicity results', command = race_Img)
btn.place(x = 10, y = 140)
root.mainloop()
#linked to our database
# Button for search
btn_search = tk.Button(window, text='Search', command=search_zipcode)
btn_search.place(x=280, y=350)
zip_code, is_livescraping = contents()
#res = backend.recall(zip_code, is_livescraping)
window.mainloop()