-
Notifications
You must be signed in to change notification settings - Fork 0
/
cabkaro.py
830 lines (689 loc) · 31.9 KB
/
cabkaro.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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
from turtle import distance
from streamlit_option_menu import option_menu
import hydralit_components as hc
import streamlit as st
import time as tt
import mysql.connector as c
import pandas as pd
import requests
from st_aggrid import GridOptionsBuilder, AgGrid, GridUpdateMode, DataReturnMode
from streamlit_lottie import st_lottie
from PIL import Image
from random import randint
user_idf=0
con=c.connect(host="localhost", user="root", passwd="12345", database="mideval")
#con = c.connect(host="localhost", user="root",
# passwd="examination123", database="project")
# con = c.connect(host='localhost', user='root',password='5824',database='project',port='5824')
st.set_page_config(page_title="DBMS Project", page_icon=":maple_leaf:", layout="wide")
# To store feedback
feedbackList=[]
list2=[]
list1=[]
user_id=0
# class feedback:
# def __init__(self, name, text):
# self.feedback_name = name
# self.feedback_text = text
# def add_feedback(self):
# feedbackList.append(self)
# return 1
if con.is_connected:
print("Successfully connected")
cursor = con.cursor(buffered=True)
st.title("CABKARO.com")
def streamlit_menu(example=2):
if example == 3:
# 2. horizontal menu with custom style
selected = option_menu(
menu_title=None, # required
options=["Home", "about-us","signup/login","Faqs","contact-us"], # required
icons=["house", "book", "envelope", "file","contact"], # optional
menu_icon="cast", # optional
default_index=0, # optional
orientation="horizontal",
styles={
"container": {"padding": "0!important", "background-color": "000000"},
"icon": {"color": "orange", "font-size": "25px"},
"nav-link": {
"font-size": "25px",
"text-align": "left",
"margin": "0px",
"--hover-color": "#eee",
},
"nav-link-selected": {"background-color": "green"},
},
)
return selected
selected = streamlit_menu(example=3)
# st.image()
st.sidebar.success("cabkaro.com")
def load_lottieurl(url):
r = requests.get(url)
if r.status_code != 200:
return None
return r.json()
lottie_coding = load_lottieurl("https://assets3.lottiefiles.com/private_files/lf30_hsabbeks.json")
lottie_coding_email = load_lottieurl("https://assets2.lottiefiles.com/packages/lf20_5wr08scz.json")
lottie_sidebar = load_lottieurl("https://assets9.lottiefiles.com/datafiles/akoBQNZ4VfYIciL/data.json")
lottie_facebook = load_lottieurl("https://assets6.lottiefiles.com/packages/lf20_xwabp3dh.json")
lottie_twiter = load_lottieurl("https://assets2.lottiefiles.com/packages/lf20_5mhyg2hz.json")
lottie_insta = load_lottieurl("https://assets3.lottiefiles.com/packages/lf20_86afyky0.json")
lottie_you = load_lottieurl("https://assets3.lottiefiles.com/packages/lf20_ej2lfhv2.json")
if selected =="contact-us":
st.markdown("## 123A mall road AP building Gurugram Haryana")
with st.container():
def local_css(file_name):
with open(file_name) as f:
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
local_css("style/style.css")
with st.container():
st.write("---")
st.header("Get In Touch With Us!")
st.write("##")
# Documention: https://formsubmit.co/[email protected]
contact_form = """
<form action="https://formsubmit.co/ac8aef252eaa135532159bd4950bfa61" method="POST">
<input type="hidden" name="_captcha" value="false">
<input type="text" name="name" placeholder="Your name" required>
<input type="email" name="email" placeholder="Your email" required>
<textarea name="message" placeholder="Your message here" required></textarea>
<button type="submit">Send</button>
</form>
"""
left_column, right_column = st.columns(2)
with left_column:
st.markdown(contact_form, unsafe_allow_html=True)
with right_column:
st_lottie(lottie_coding_email, height=300, key="email")
with st.container():
face_col, twiter_col, insta_col, you_col = st.columns(4)
with face_col:
st_lottie(lottie_facebook, height=100, key="lottie_facebook")
with twiter_col:
st_lottie(lottie_twiter, height=100, key="lottie_twiter")
with insta_col:
st_lottie(lottie_insta, height=100, key="lottie_insta")
with you_col:
st_lottie(lottie_you, height=100, key="lottie_you")
if selected == "Home":
st.markdown("<h1 style='text-align: center; color: orange;'>welcome to CABKARO</h1>", unsafe_allow_html=True)
query = "select booking_id,pickup,destination from booking"
cursor.execute(query)
data = cursor.fetchall()
# print(data)
bok = []
pick = []
dest = []
for i in range(len(data)):
bok.append(data[i][0])
pick.append(data[i][1])
dest.append(data[i][2])
old_bookingid = -1
new_bookingid = bok[-1] + 1
e_name = ""
e_ph = 0
e_id = 0
# st.markdown("## book a ride")
with st.container():
# Use local CSS
def local_css(file_name):
with open(file_name) as f:
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
local_css("style/style.css")
# ---- HEADER SECTION ----
with st.container():
title_container = st.container()
col1, col2 = st.columns([1, 20])
# image = Image.open('images\\CabHUB.png')
st.markdown("<h2 style='text-align: center; color: orange;'>Book a Taxi in your city</h2>",
unsafe_allow_html=True)
st.markdown(
"<h6 style='text-align: center; color: white;'>choose from a range of categories and prices</h6>",
unsafe_allow_html=True)
# ---- WHAT I DO ----
with st.container():
st.write("---")
left_column, right_column = st.columns(2)
with left_column:
st.header("Book a Ride")
pick_up = left_column.text_input("Pick up")
drop = left_column.text_input("Drop")
option = st.radio("car type", ("mini", "auto", "prime sedan", "prime play", "prime suv"))
if pick_up in pick and drop in dest:
for i in range(len(pick)):
if pick_up == pick[i] and drop == dest[i]:
old_bookingid = bok[i]
print("old_bookingid", old_bookingid)
print("new_bookingid", new_bookingid)
break
if st.button("Select a ride"):
query = "select * from rough"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
# for i in range(len(data)):
rt = data[-1][0]
print("rt",rt)
query = "insert into booking(user_id,booking_id,current_location,pickup,destination) values({},{},'{}','{}','{}')".format(
rt, new_bookingid, pick_up, pick_up, drop)
cur = con.cursor()
cur.execute(query)
con.commit()
# fetching distance btw pickup and drop
distance1 = -1
time = '00:00:00'
query1 = "select distance from distance where booking_id={}".format(old_bookingid)
cur = con.cursor()
cur.execute(query1)
data1 = cur.fetchall()
print("data",data1)
for i in range(len(data1)):
distance1 = int(data1[i][0])
query3 = "select current_time"
cur = con.cursor()
cur.execute(query3)
data3 = cur.fetchall()
for row in data3:
time = row[0]
cost = []
cost1 = [1, 2, 3, 4]
# auto, mini , primeplay ,prime sedan, prime suv
query2 = "select cost_km from fares where start<='{}' and end>='{}'".format(time, time)
cur = con.cursor()
cur.execute(query2)
data2 = cur.fetchall()
for i in range(len(data2)):
cost.append(data2[i][0])
print(cost)
# option = st.selectbox("Car type", [
# "Mini Rs.{}".format(cost[0] * distance1), "Prime Sedan Rs.{}".format(cost[1] * distance1),
# "Auto Rs.{}".format(cost[2] * distance1), "Prime Play Rs.{} ".format(cost[3] * distance1),
# "Prime Suv Rs.{}".format(cost[4] * distance1)])
# option = st.selectbox("Car type", [
# "Mini", "Prime Sedan",
# "Auto", "Prime Play",
# "Prime Suv"])
# login = st.selectbox("How do you want to login?",
#
# ["Signup as Customer", "Login as Customer", "Signin_as_administrator"])
# fetching employee id name phone no.
query4 = "select e_id,first_name,last_name,phone_no from employees where availability=1"
cur = con.cursor()
cur.execute(query4)
data4 = cur.fetchone()
print(data4[0])
print(data4[1])
print(data4[2])
print(data4[3])
e_name = e_name + data4[1]
e_name = e_name + " " + data4[2]
e_id = data4[0]
e_ph = data4[3]
store_price=0
# st.success("successfully booked")
if option == "mini":
st.success('You selected: Mini')
st.write(distance1*cost[1])
store_price=distance1*cost[1]
if option == "prime sedan":
st.success('You selected: Prime Sedan')
st.write(distance1*cost[3])
store_price=distance1*cost[3]
if option == "auto":
st.success('You selected: Auto')
st.write(distance1*cost[0])
store_price=distance1*cost[0]
if option =="prime suv":
st.success("You selected Prime SUV")
st.write(distance1*cost[4])
store_price=distance1*cost[4]
if option=="prime play":
st.success("You selected Prime Play")
st.write(distance1*cost[2])
store_price=distance1*cost[2]
progress=st.progress(0)
for i in range(100):
tt.sleep(0.0001)
progress.progress(i+1)
st.success("Successfully found your driver")
st.write("Employee ID: ",e_id)
st.write("Name: ",e_name)
st.write("Phone no: ",e_ph)
st.write("Contact the driver for further details")
st.write(option)
query="select registration_no from cars where car_type='{}'".format(option)
# cur.execute(query)
# dataa = cur.fetchall()
# for row in dataa:
# print(row[0])
# st.write("Registration no. of car", row[0])
# break
queryrid="insert into rides(booking_id,registration_no,e_id) values ({}, {}, {})".format(new_bookingid, "DL3450", e_id)
# cur.execute(queryrid)
# con.commit()
queryrid="insert into distance(total_price,booking_id,distance) values ({}, {}, {})".format(store_price,new_bookingid, distance1)
# cur.execute(queryrid)
# con.commit()
# query12 = "delete from rough"
# cur = con.cursor()
# cur.execute(query12)
# con.commit()
with right_column:
st_lottie(lottie_coding, height=600, key="coding")
if selected == "about-us":
st.markdown("""
### Our Founders
##### Arjun Temura, BTech Computer Science and Biosciences, IIIT Delhi
##### Aman Kumar, BTech Computer Science and Biosciences, IIIT Delhi
##### Mohd Zaid, BTech Computer Science and Biosciences, IIIT Delhi
##### Debjit Pramanik, BTech Computer Science and Biosciences, IIIT Delhi
#### We are a Taxi booking company who are working hard to bring to you the best cab experience you can ever imagine!
#### :pray: :pray: :pray: **TRUST IS EARNED**:pray: :pray: :pray:
##### We are rated as the 3rd best taxi booking company in India. We are the first choice of all Indians, be it going to your institute or on a trip.
##### All are drivers are well trained and have a valid driving licences issued by the Govt. of India
##### They all are vaccinated and cabs are sanitised after every trip. :smile:
""", True)
st.header("Some Customer Feedback: ")
col1, col2 = st.columns(2)
col1.subheader("Aman Gupta")
col1.image("boy.jpg", width=200)
col1.markdown("""
_I am so lucky to be a regular customer of CABKARO. All rides are pocket friendly and are on time.Highly recommended!_
:star::star::star::star::star:
""")
col2.subheader("Shubhangi Srinivas")
col2.image("girl.jpg", width=200)
col2.markdown("""
_As someone who works in the IT sector for late night shifts, cab booking can be a headache.
CABKARO's drivers are available 24x7 at your call with top notch service_
:star::star::star::star:
""")
st.subheader("Add your feedback")
feedback_name = st.text_input("Enter your name: ")
feedback_text = st.text_area("Write about us: ")
if st.button("submit"):
query="insert into feedback values('{}','{}')".format(feedback_name, feedback_text)
cur = con.cursor()
cur.execute(query)
con.commit()
st.success("Feedback submitted successfully!")
if st.button("View Other feedbacks"):
query="select name as \"Name\", feedback as \"Feedback\" from feedback"
cur=con.cursor()
cur.execute(query)
data=cur.fetchall()
for row in data:
st.write("Name: ", row[0])
st.write("Feedback: ", row[1])
st.write("=========================================")
# user_id1 = list2[-1]
if selected == "signup/login":
st.title("Signup/ Login Page")
login = st.selectbox("How do you want to login?",
["Signup as Customer", "Login as Customer","Signin_as_administrator"])
if login == "Signin_as_administrator":
# reconnect
if con.is_connected():
cursor.close()
con.close()
print("MySQL connection is closed")
con = c.connect(host="localhost", user="boss",
passwd="aman", database="mideval")
if con.is_connected():
print("successfully connected as admin")
st.success("welcome admin")
choice = st.radio("see data",
('rides', 'employee', 'booking', 'payment', 'fares', 'distance',
'customers', 'luxury_cars', 'cars'))
if choice == 'rides':
query = "select * from rides"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected) #Pass the selected rows to a new dataframe df
# AgGrid(df)
if choice=='employee':
query = "select * from employees"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if choice == 'booking':
query = "select * from booking"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if choice =='payment':
query = "select * from payment"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if choice == 'fares':
query = "select * from fares"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if choice == 'distance':
query = "select * from distance"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if choice == 'customers':
query = "select * from customer"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if choice == 'luxury_cars':
query = "select * from luxury_cars"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if choice == 'cars':
query = "select * from cars"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
data=pd.read_sql(query,con);
gb = GridOptionsBuilder.from_dataframe(data)
gb.configure_pagination(paginationAutoPageSize=True) #Add pagination
gb.configure_side_bar() #Add a sidebar
gb.configure_selection('multiple', use_checkbox=True, groupSelectsChildren="Group checkbox select children") #Enable multi-row selection
gridOptions = gb.build()
grid_response = AgGrid(
data,
gridOptions=gridOptions,
data_return_mode='AS_INPUT',
update_mode='MODEL_CHANGED',
fit_columns_on_grid_load=False,
theme='blue', #Add theme color to the table
enable_enterprise_modules=True,
height=350,
width='100%',
reload_data=True
)
data = grid_response['data']
selected = grid_response['selected_rows']
df = pd.DataFrame(selected)
if login == "Login as Customer":
userid=st.number_input("UserID: ")
user_idf=userid
query="insert into rough values ({})".format(user_idf)
cur = con.cursor()
cur.execute(query)
con.commit()
#print(user_idf)
passwd=st.text_input("Password: ", type="password")
query="select user_id,pass_wd,name from customer"
cursor.execute(query)
data = cursor.fetchall()
# list1=[] #list containing user_id's
# list2=[] #list containing passwd's
for i in range(len(data)):
list1.append(data[i][0])
list2.append(data[i][1])
# print(list1[499])
# print(list2[499])
# print(data)
c1, c2 = st.columns([7, 1])
if c2.button("Submit"):
# print("user", userid)
bol1 = (userid in list1)
bol2 = (passwd in list2)
# print(bol1,bol2)
if (bol1) and (bol2):
st.success("sucessfully logedin....")
st.success("Now u can book a ride, GO to Home page!...!")
st.sidebar.write("WELCOME:\n")
st.sidebar.write(data[int(userid)-1][2])
else:
st.error("user-id or password may not be correct")
if login == "Signup as Customer":
query = "select user_id from customer"
cursor.execute(query)
data = cursor.fetchall()
# print(len(data))
user_id=len(data)+1
user_idf=user_id
query="insert into rough values ({})".format(user_idf)
cur = con.cursor()
cur.execute(query)
con.commit()
first, last = st.columns(2)
user_name=first.text_input("Name")
email=last.text_input("E-mail")
passw, phno = st.columns([3, 1])
passwd=passw.text_input("Password: ", type="password")
number=phno.text_input("Phone number")
c1, c2 = st.columns([7, 1])
if c2.button("Submit"):
st.success("You have been successfully registered")
st.success("Now you can go to HomePage")
query = "insert into customer(user_id,name,email,pass_wd, mobile) values({},'{}','{}','{}',{})".format(
user_id,user_name,email, passwd, number)
cur = con.cursor()
cur.execute(query)
con.commit()
user_id+=1
if selected == "Faqs":
st.write("why cabkaro?")
st.write("when discounts alloted")
st.write("why ride with us")
st.write("women safety ensured")
st.write("are the drivers")
# most booked car
# most busy time
# ways of payments
# different car types
# price hikes at different times
faq = st.radio("faq", ("most-booked-car", "most-busy-time",
"payment-ways", "diff-car-types"))
if faq=="prices":
query="select car_type,avg(cost_km) from fares group by car_type order by car_type"
cur=con.cursor()
cur.execute(query)
data=cur.fetchall()
st.dataframe(data)
st.write(data)
if faq == "most-booked-car":
query = "select car_type,((select count(*) from rides r where r.registration_no in(select registration_no from cars l where l.car_type=a.car_type)))as most_booked from cars a group by car_type order by most_booked"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
st.dataframe(data)
if faq == "most-busy-time":
query="""select start, end, count(*)
from fares f,cars c
where exists(select * from rides r where r.registration_no=c.registration_no and r.time>f.start and r.time<f.end and c.car_type=f.car_type)
group by start, end order by count(*)"""
cur = con.cursor()
cur.execute(query)
data=cur.fetchall()
count=cur.rowcount
for row in data:
count-=1
st.write("Interval Start Time: ", row[0], "Interval End Time:", row[1], "No of Rides booked: ", row[2])
if count==0:
st.write("Interval: ", row[0],"to", row[1],"is the busiest time")
if faq == "payment-ways":
query = "select payment_type from payment"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
st.dataframe(data)
if faq == "diff-car-types":
st.success("here are the different car types that you can book")
query = "select distinct car_type from cars"
cur = con.cursor()
cur.execute(query)
data = cur.fetchall()
st.dataframe(data)
# st.write(data)
with st.sidebar:
st_lottie(lottie_sidebar, height=300, key="lottie_sidebar")