-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource-code
More file actions
445 lines (200 loc) · 9.72 KB
/
source-code
File metadata and controls
445 lines (200 loc) · 9.72 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
#LIC DATABASE MANAGEMENT SYSTEM
#importing required modules for SQL interface and other functions
import mysql.connector
mydb= mysql.connector.connect(
host="localhost",
user="root",
passwd="1234",
database="lic_rdbms")
mycursor=mydb.cursor()
#CREATING DATABASE
mycursor.execute("CREATE DATABASE IF NOT EXISTS lic_rdbms")
#CREATING TABLES FOR STORING RECORDS
mycursor.execute("CREATE TABLE IF NOT EXISTS Policies (PlanType VARCHAR(250)PRIMARY KEY,SumAssured VARCHAR(250),Premium VARCHAR(10),Term VARCHAR(250));")
mycursor.execute("CREATE TABLE IF NOT EXISTS user (username VARCHAR(50) PRIMARY KEY,password VARCHAR(20), fname VARCHAR(20), lname VARCHAR(20), address VARCHAR(100),phone VARCHAR(10),annual_income VARCHAR(15), aadhar VARCHAR(16),age VARCHAR(3));")
mycursor.execute("CREATE TABLE IF NOT EXISTS admin(admin_id int(5) primary key,admin_name varchar(20),password varchar(10),admin_email varchar(50))")
mycursor.execute("CREATE TABLE IF NOT EXISTS plan_chosen(username VARCHAR(50) REFERENCES user(username), PType VARCHAR(250))")
#CHOICES
print("WELCOME TO THE LIC MANAGEMENT SYSTEM. PLEASE SELECT ONE OF THE FOLLOWING OPTIONS TO CONTINUE : \n")
print("Press 1 for admin registration")
print("Press 2 for admin login")
print("Press 3 for user login")
print("Press 4 for user registration")
ch=int(input("enter your choice"))
#-------------------------------
#This menu is shown to the subscriber/admin upon initiation of the program.
#
#It allows user/admin to login or sign up
#-------------------------------
if (ch==1):
print("To login as admin, enter password")
mp=input("Enter masterpassword")
#Administrator registration
if(mp=="corplic"):
print("Access authorised")
name=input("Enter your Name : ")
adminid=input("Enter your ID : ")
password=input("Enter your Password : ")
adminemail=input("Enter your Email ID : ")
print("")
input_admin=(name,adminid,password,adminemail)
admin_new="INSERT INTO admin(admin_name,admin_id,password,admin_email)VALUES(%s,%s,%s,%s)"
mycursor.execute(admin_new,input_admin)
mydb.commit()
print("Account created successfully")
print("")
#---------------------------------
#This segment allows admin to sign up
#---------------------------------
#Administrator login
if(ch==2):
admin_id=int(input("Enter your ADMIN ID : "))
password=input("Enter your PASSWORD : ")
print("")
mycursor.execute("SELECT * FROM admin")
check1=mycursor.fetchall()
#CHECKING FOR CORRECT ID AND PASSWORD
for y in range(0,len(check1)):
if(check1[y][0]==admin_id and check1[y][2]==password):
print("LOGIN SUCCESSFUL")
print("")
#---------------------------------
#This function allows administator to login
#---------------------------------
print ("Access Authorised,Welcome to administration of LIC Management System",check1[y][1])
#--------------------
#-----Admin Menu-----
#--------------------
print("Press 1 to add new record")
print("Press 2 for record updation")
print("Press 3 for record deletion")
print("Press 4 to view existing records")
op=int(input("enter your choice"))
#ADDITION OF NEW RECORDS
if(op==1):
n=int(input("Enter the number of records you want to add"))
for i in range(n):
pt=input("Enter Plan Type")
sa=input("Enter Sum Assured")
p=input("Enter Premium")
term=input("Enter Term")
sql = "INSERT INTO Policies(PlanType,SumAssured,Premium,Term) VALUES(%s, %s,%s,%s)"
val = (pt,sa,p,term)
mycursor.execute(sql, val)
print(mycursor.rowcount, "record(s) inserted")
mydb.commit()
#UPDATION OF RECORDS
elif(op==2):
n=int(input("Enter the number of records you want to update"))
for i in range(n):
pn=input("Enter Plan Type to update")
sr=input("Enter new sum assured")
pr=input("Enter new premium")
tm=input("Enter new term")
sql_select_query = "UPDATE Policies SET (SumAssured,Premium,Term )=(%s,%s,%s) WHERE PlanType = (%s)"
input1=(sr,pr,tm,pn)
mycursor.execute(sql_select_query,input1)
print(mycursor.rowcount, "record(s) updated")
mydb.commit()
#DELETION OF RECORDS
elif(op==3):
no=int(input("Enter the number of records you want to delete"))
for i in range(no):
pla=input("Enter Plan Type to delete")
sql_select_query = "DELETE FROM Policies WHERE PlanType = %s"
mycursor.execute(sql_select_query, (pla, ))
print(mycursor.rowcount, "record(s) deleted")
#VIEWING EXISTING RECORDS
elif(op==4):
mycursor.execute("SELECT * FROM Policies")
myresult=mycursor.fetchall()
print(myresult)
else:
print("invalid choice")
#Incorrect PASSWORD
elif(check1[y][0]==admin_id and check1[y][2]!=password):
print("**PASSWORD INCORRECT.TRY AGAIN**")
print("")
else:
break
#USER LOGIN
if(ch==3):
us=input("Enter your username: ")
pswd=input("Enter your password: ")
mycursor.execute("SELECT * FROM user")
data=mycursor.fetchall()
c=0
for y in range(0,len(data)):
if(data[y][0]==us and data[y][1]==pswd):
print("LOGIN SUCCESSFUL")
print("WELCOME",us)
#THIS MODULE IS IMPORTED TO GIVE THE USER A VISUAL OF THE EXISTING POLICIES AND NO OF CUSTOMERS WHO HAVE BOUGHT THE POLICY
#--------------------
#-----User Menu------
#--------------------
print("Press 1 to view available policies")
print("Press 2 to view a particular policy")
print("Press 3 to buy a policy")
c=int(input("enter choice"))
if(c==1):
mycursor.execute("SELECT PlanType FROM Policies")
print("THE AVAILABLE POLICIES ARE")
print(mycursor)
print("Press 1 if you want to view further details about all plan types")
r=int(input("enter your choice"))
if(r==1):
mycursor.execute("SELECT * FROM Policies")
myresult=mycursor.fetchall()
print(myresult)
else:
break
#THIS ENABLES THE USER TO VIEW A PARTICULAR POLICY
elif(c==2):
plant=input("Enter the specific plan type to view further details")
comm="select * from policies where PlanType='%s'"%(plant,)
mycursor.execute(comm)
b=mycursor.fetchall()
for x in b:
print(*x, sep='|')
elif(c==3):
plat=input("Enter the specific plan type to buy")
mycursor.execute("select PlanType from Policies")
print("Plan Type chosen.")
x="insert into plan_chosen(username,Ptype) values (%s,%s)"%(us,plat)
mycursor.execute(x)
mydb.commit()
#Incorrect username(User doesn't exist)
elif(data[y][0]!=us and data[y][1]==pswd):
print("USERNAME INCORRECT. PLEASE TRY AGAIN")
break
#Incorrect Password
elif(data[y][0]==us and data[y][1]!=pswd):
print("PASSWORD INCORRECT. PLEASE TRY AGAIN")
c=c+1
print("You have done ",c," attempts ",(5-(c))," remaining.")
while(c==5):
break
#THIS OPTION HELPS IN THE NEW USER TO REGISTER
if(ch==4):
username=input("Enter username")
password=input("Enter password")
fname=input("Enter your first name ")
lname=input("Enter your last name")
add=input("Enter your address")
ph=input("Enter your contact number ")
annin=input("Enter your annual income")
aadh=input("Enter your Aadhar Card number")
age=input("Enter your age")
mycursor.execute("select username from user")
#THIS IS TO RESTRICT THE DATA TO ENTERED ALREADY EXISTING USERNAME
for k in mycursor:
if(username==k):
print("username already exists")
else:
continue
val=(username,password,fname,lname,add,ph,annin,aadh,age)
command="INSERT INTO user(username,password,fname,lname,address,phone,annual_income,aadhar,age) VALUES(%s,%s,%s,%s,%s,%s,%s,%s,%s)"
#THIS FUNCTION WILL ASSIGN THE INPUT VALUES TO THE MAIN TABLE
mycursor.execute(command,val)
mydb.commit()
print("User information Added")