-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.py
More file actions
839 lines (618 loc) · 24.7 KB
/
python.py
File metadata and controls
839 lines (618 loc) · 24.7 KB
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
831
832
833
834
835
836
837
838
839
from flask import Flask, render_template, request, redirect, url_for
import pandas as pd
import pymysql
app = Flask(__name__)
def fetch_data(query, args):
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Execute the query to fetch data
cursor.execute(query, args)
# Fetch all rows from the executed query
data = cursor.fetchall()
if data:
# Create a DataFrame from the fetched data
df = pd.DataFrame(data, columns=[col[0] for col in cursor.description])
return df
else:
# Return an empty DataFrame
return pd.DataFrame()
except pymysql.MySQLError as err:
print(f"Error connecting to MySQL: {err}")
return pd.DataFrame()
finally:
# Ensure the connection is closed even if an error occurs
if 'db' in locals() and db.open:
db.close()
# def get_db_connection():
# app.config['MYSQL_HOST'] = '127.0.0.1'
# app.config['MYSQL_USER'] = 'root'
# app.config['MYSQL_PASSWORD'] = '1234'
# app.config['MYSQL_DB'] = 'criminaldb'
# return pymysql.connect(host=app.config['MYSQL_HOST'],
# user=app.config['MYSQL_USER'],
# password=app.config['MYSQL_PASSWORD'],
# db=app.config['MYSQL_DB'])
# @app.route('/')
# def home():
# return render_template('login.html')
# @app.route('/register', methods=['POST'])
# def register_user():
# firstname = request.form['firstname']
# lastname = request.form['lastname']
# email = request.form['email']
# password = request.form['password']
# conn = get_db_connection()
# try:
# cur = conn.cursor()
# cur.execute("INSERT INTO user_info(firstname, lastname, email, password) VALUES (%s, %s, %s, %s)",
# (firstname, lastname, email, password))
# conn.commit()
# except Exception as e:
# print(f"Error: {e}")
# finally:
# cur.close()
# conn.close()
# return redirect(url_for('home'))
# @app.route('/login', methods=['GET', 'POST'])
# def login():
# if request.method == 'POST':
# email = request.form['email']
# password = request.form['password']
# conn = get_db_connection()
# try:
# cur = conn.cursor()
# cur.execute("SELECT * FROM user_info WHERE email=%s AND password=%s", (email, password))
# result = cur.fetchone()
# except Exception as e:
# print(f"Error: {e}")
# result = None
# finally:
# cur.close()
# conn.close()
# if result:
# return render_template('index.html',result=result,fname = result[1])
# else:
# return 'Invalid email or password'
# return render_template('login.html')
# @app.route('/', methods=['GET', 'POST'])
# def login():
# if request.method == 'POST':
# email = request.form['email']
# password = request.form['password']
# try:
# # Database connection parameters
# host = '127.0.0.1'
# user = 'root'
# password_db = '1234'
# database = 'criminaldb'
# # Establish the database connection
# db = pymysql.connect(host=host, user=user, password=password_db, db=database)
# # Create a cursor object
# cursor = db.cursor()
# # Execute the query to fetch user data
# cursor.execute("SELECT * FROM user_info WHERE email=%s AND password=%s", (email, password))
# result = cursor.fetchone()
# except pymysql.MySQLError as err:
# print(f"Error connecting to MySQL: {err}")
# result = None
# finally:
# # Ensure the connection is closed
# if 'db' in locals() and db.open:
# db.close()
# if result:
# return render_template('index.html', result=result, fname=result[1])
# else:
# return 'Invalid email or password'
# return render_template('login.html')
# @app.route('/register', methods=['POST'])
# def register_user():
# firstname = request.form['firstname']
# lastname = request.form['lastname']
# email = request.form['email']
# password = request.form['password']
# try:
# # Database connection parameters
# host = '127.0.0.1'
# user = 'root'
# password_db = '1234'
# database = 'criminaldb'
# # Establish the database connection
# db = pymysql.connect(host=host, user=user, password=password_db, db=database)
# # Create a cursor object
# cursor = db.cursor()
# # Execute the query to insert data
# cursor.execute("INSERT INTO user_info (firstname, lastname, email, password) VALUES (%s, %s, %s, %s)",
# (firstname, lastname, email, password))
# db.commit()
# except pymysql.MySQLError as err:
# print(f"Error inserting data into MySQL: {err}")
# db.rollback()
# finally:
# # Ensure the connection is closed
# if 'db' in locals() and db.open:
# db.close()
# return redirect(url_for('login'))
@app.route('/', methods=['GET', 'POST'])
def index():
if request.method == 'POST':
search_type = request.form.get('search_type', 'default_search_type')
if search_type == 'crime.html':
return redirect(url_for('crime'))
elif search_type == 'criminal.html':
return redirect(url_for('criminal'))
elif search_type == 'crime_occurrence.html':
return redirect(url_for('crime_occurrence'))
elif search_type == 'location.html':
return redirect(url_for('location'))
elif search_type == 'suspect.html':
return redirect(url_for('suspect'))
else:
return render_template('index.html')
@app.route('/home')
def home():
return render_template('index.html')
@app.route('/crime', methods=['GET', 'POST'])
def crime():
if request.method == 'POST':
id = request.form.get('id')
name = request.form.get('name')
category = request.form.get('category')
# Prepare the SQL query with placeholders
query = "SELECT * FROM crime WHERE id = %s OR name = %s OR category = %s"
# Ensure the arguments are passed as a tuple
args = (id, name, category)
# Fetch data using the updated function
df = fetch_data(query, args)
if df.empty:
html_table = ""
else:
html_table = df.to_html(classes='table table-striped')
return render_template('result.html', data=html_table)
else:
return render_template('crime.html')
@app.route('/criminal', methods=['GET', 'POST'])
def criminal():
if request.method == 'POST':
id = request.form.get('id')
name = request.form.get('name')
crime = request.form.get('crime')
query = "SELECT * FROM criminal WHERE id = %s OR name = %s OR crime = %s"
args = (id, name, crime)
df = fetch_data(query, args)
if df.empty:
html_table = ""
else:
html_table = df.to_html(classes='table table-striped')
return render_template('result.html', data=html_table)
else:
return render_template('criminal.html')
@app.route('/crime_occurrence', methods=['GET', 'POST'])
def crime_occurrence():
if request.method == 'POST':
crime_id = request.form.get('crime_id')
location_id = request.form.get("location_id")
date_of_crime = request.form.get('date_of_crime')
query = "SELECT * FROM crime_occurrence WHERE crime_id = %s OR location_id = %s OR date_of_crime = %s"
args = (crime_id, location_id, date_of_crime)
df = fetch_data(query, args)
if df.empty:
html_table = ""
else:
html_table = df.to_html(classes='table table-striped')
return render_template('result.html', data=html_table)
else:
return render_template('crime_occurrence.html')
@app.route('/location', methods=['GET', 'POST'])
def location():
if request.method == 'POST':
city = request.form.get('city')
state = request.form.get('state')
zip = request.form.get('zip')
query = "SELECT * FROM location WHERE city = %s OR state = %s OR zip = %s"
args = (city, state, zip)
df = fetch_data(query, args)
if df.empty:
html_table = ""
else:
html_table = df.to_html(classes='table table-striped')
return render_template('result.html', data=html_table)
else:
return render_template('location.html')
@app.route('/suspect', methods=['GET', 'POST'])
def suspect():
if request.method == 'POST':
id = request.form.get('id')
name = request.form.get('name')
gender = request.form.get('gender')
height = request.form.get('height')
query = "SELECT * FROM suspect WHERE id = %s OR name = %s OR gender = %s OR height = %s"
args = (id, name, gender, height)
df = fetch_data(query, args)
html_table = df.to_html(classes='table table-striped') if not df.empty else "No data found"
return render_template('result.html', data=html_table)
else:
return render_template('suspect.html')
@app.route('/insert_crime', methods=['POST'])
def insert_crime():
id = request.form.get('id')
name = request.form.get('name')
category = request.form.get('category')
query = "INSERT INTO crime (id, name, category) VALUES (%s, %s, %s)"
args = (id, name, category)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Execute the query to insert data
cursor.execute(query, args)
# Commit the transaction
db.commit()
donein = f"Insertion Done"
return render_template('crime.html', donein=donein)
except pymysql.MySQLError as err:
print(f"Error inserting data into MySQL: {err}")
db.rollback()
return "Error inserting data into MySQL"
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/insert_criminal', methods=['POST'])
def insert_criminal():
id = request.form.get('id')
name = request.form.get('name')
crime = request.form.get('crime')
crime_location = request.form.get('crime_location')
date_of_crime = request.form.get('date_of_crime')
status = request.form.get('status')
notes = request.form.get('notes')
query = "INSERT INTO criminal (id, name, crime, crime_location, date_of_crime, status, notes) VALUES (%s, %s, %s, %s, %s, %s, %s)"
args = (id, name, crime, crime_location, date_of_crime, status, notes)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Print the query and arguments for debugging
print("Executing query:", query)
print("With arguments:", args)
# Execute the query to insert data
cursor.execute(query, args)
# Commit the transaction
db.commit()
donein = f"Insertion Done"
return render_template('criminal.html', donein=donein)
except pymysql.MySQLError as err:
# Print the exact error message for debugging
print(f"Error inserting data into MySQL: {err}")
db.rollback()
return f"Error inserting data into MySQL: {err}"
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/insert_crime_occurrence', methods=['POST'])
def insert_crime_occurrence():
suspect_id = request.form.get('suspect_id')
crime_id = request.form.get('crime_id')
location_id = request.form.get('location_id')
date_of_crime = request.form.get('date_of_crime')
status = request.form.get('status')
notes = request.form.get('notes')
name = request.form.get('name')
category = request.form.get('category')
query = "INSERT INTO crime_occurrence(suspect_id, crime_id, location_id, date_of_crime, status, notes) VALUES (%s, %s, %s, %s, %s, %s)"
args = (suspect_id, crime_id, location_id, date_of_crime,status, notes)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Execute the query to insert data
cursor.execute(query, args)
# Commit the transaction
db.commit()
donein = f"Insertion Done"
return render_template('crime_occurrence.html', donein=donein)
except pymysql.MySQLError as err:
print(f"Error inserting data into MySQL: {err}")
db.rollback()
return f"Error inserting data into MySQL: {err}"
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/insert_suspect', methods=['POST'])
def insert_suspect():
id = request.form.get('id')
name = request.form.get('name')
birthdate = request.form.get('birthdate')
gender = request.form.get('gender')
weight = request.form.get('weight')
height = request.form.get('height')
notes = request.form.get('notes')
name = request.form.get('name')
category = request.form.get('category')
query = "INSERT INTO suspect(id, name, birthdate, gender, height, weight, notes) VALUES (%s, %s, %s, %s, %s, %s, %s)"
args = (id, name, birthdate, gender, height, weight, notes)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Execute the query to insert data
cursor.execute(query, args)
# Commit the transaction
db.commit()
donein = f"Insertion Done"
return render_template('suspect.html', donein=donein)
except pymysql.MySQLError as err:
print(f"Error inserting data into MySQL: {err}")
db.rollback()
return f"Error inserting data into MySQL: {err}"
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/insert_location', methods=['POST'])
def insert_location():
id = request.form.get('id')
address = request.form.get('address')
city = request.form.get('city')
state = request.form.get('state')
zip = request.form.get('zip')
notes = request.form.get('notes')
name = request.form.get('name')
category = request.form.get('category')
query = "INSERT INTO location(id, address, city, state, zip, notes) VALUES (%s, %s, %s, %s, %s, %s)"
args = (id, address, city, state, zip, notes)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Execute the query to insert data
cursor.execute(query, args)
# Commit the transaction
db.commit()
donein = f"Insertion Done"
return render_template('location.html', donein=donein)
except pymysql.MySQLError as err:
print(f"Error inserting data into MySQL: {err}")
db.rollback()
return f"Error inserting data into MySQL: {err}"
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/delete_crime', methods=['POST'])
def delete_crime():
id = request.form.get('id')
# Query to check if the record exists
check_query = "SELECT * FROM crime WHERE id = %s"
delete_query = "DELETE FROM crime WHERE id = %s"
args = (id,)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Check if the record exists
cursor.execute(check_query, args)
record = cursor.fetchone()
if record:
# Record exists, proceed to delete
cursor.execute(delete_query, args)
db.commit()
done = f"Deletion Done"
return render_template('crime.html', done=done)
else:
# Record not found, show error message
error = f"No record found with ID: {id}"
return render_template('crime.html', error=error)
except pymysql.MySQLError as err:
print(f"Error deleting data from MySQL: {err}")
db.rollback()
error = f"Error deleting data from MySQL: {err}"
return render_template('crime.html', error=error)
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/delete_criminal', methods=['POST'])
def delete_criminal():
id = request.form.get('id')
# Query to check if the record exists
check_query = "SELECT * FROM criminal WHERE id = %s"
delete_query = "DELETE FROM criminal WHERE id = %s"
args = (id)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Check if the record exists
cursor.execute(check_query, args)
record = cursor.fetchone()
if record:
# Record exists, proceed to delete
cursor.execute(delete_query, args)
db.commit()
done = f"Deletion Done"
return render_template('criminal.html', done=done)
else:
# Record not found, show error message
error = f"No record found with ID: {id}"
return render_template('criminal.html', error=error)
except pymysql.MySQLError as err:
print(f"Error deleting data from MySQL: {err}")
db.rollback()
error = f"Error deleting data from MySQL: {err}"
return render_template('criminal.html', error=error)
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/delete_crime_occurrence', methods=['POST'])
def delete_crime_occurrence():
id = request.form.get('crime_id')
# Query to check if the record exists
check_query = "SELECT * FROM crime_occurrence WHERE crime_id = %s"
delete_query = "DELETE FROM crime_occurrence WHERE crime_id = %s"
args = (id)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Check if the record exists
cursor.execute(check_query, args)
record = cursor.fetchone()
if record:
# Record exists, proceed to delete
cursor.execute(delete_query, args)
db.commit()
done = f"Deletion Done"
return render_template('crime_occurrence.html', done=done)
else:
# Record not found, show error message
error = f"No record found with ID: {id}"
return render_template('crime_occurrence.html', error=error)
except pymysql.MySQLError as err:
print(f"Error deleting data from MySQL: {err}")
db.rollback()
error = f"Error deleting data from MySQL: {err}"
return render_template('crime_occurrence.html', error=error)
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/delete_location', methods=['POST'])
def delete_location():
id = request.form.get('id')
# Query to check if the record exists
check_query = "SELECT * FROM location WHERE id = %s"
delete_query = "DELETE FROM location WHERE id = %s"
args = (id)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Check if the record exists
cursor.execute(check_query, args)
record = cursor.fetchone()
if record:
# Record exists, proceed to delete
cursor.execute(delete_query, args)
db.commit()
done = f"Deletion Done"
return render_template('location.html', done=done)
else:
# Record not found, show error message
error = f"No record found with ID: {id}"
return render_template('location.html', error=error)
except pymysql.MySQLError as err:
print(f"Error deleting data from MySQL: {err}")
db.rollback()
error = f"Error deleting data from MySQL: {err}"
return render_template('location.html', error=error)
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
@app.route('/delete_suspect', methods=['POST'])
def delete_suspect():
id = request.form.get('id')
# Query to check if the record exists
check_query = "SELECT * FROM suspect WHERE id = %s"
delete_query = "DELETE FROM suspect WHERE id = %s"
args = (id)
try:
# Database connection parameters
host = '127.0.0.1'
user = 'root'
password = '1234'
database = 'criminaldb'
# Establish the database connection
db = pymysql.connect(host=host, user=user, password=password, db=database)
# Create a cursor object
cursor = db.cursor()
# Check if the record exists
cursor.execute(check_query, args)
record = cursor.fetchone()
if record:
# Record exists, proceed to delete
cursor.execute(delete_query, args)
db.commit()
done = f"Deletion Done"
return render_template('suspect.html', done=done)
else:
# Record not found, show error message
error = f"No record found with ID: {id}"
return render_template('suspect.html', error=error)
except pymysql.MySQLError as err:
print(f"Error deleting data from MySQL: {err}")
db.rollback()
error = f"Error deleting data from MySQL: {err}"
return render_template('suspect', error=error)
finally:
# Ensure the connection is closed
if 'db' in locals() and db.open:
db.close()
if __name__ == '__main__':
app.run(debug=True)