-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.py
527 lines (406 loc) · 13.6 KB
/
create.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
import sqlite3
def create_event():
event_name = input("Enter Name of Event: \n")
while(event_name == ""):
event_name = input("Do you Really want an empty name for your Event!: \n")
con = sqlite3.connect('fest.db')
check = con.execute("SELECT Event_name From events WHERE Event_name = ?", (event_name,))
check = check.fetchone()
while (check is not None):
event_name = input("Event Already Exists. Enter Again: \n")
check = con.execute("SELECT Event_name From events WHERE Event_name = ?", (event_name,))
check = check.fetchone()
print("\nChoose Date of Event: ")
print("Enter 1 for April 20, 2019")
print("Enter 2 for April 21, 2019")
date = input()
while(True):
if (not date.isdigit()):
print("Please Enter valid input!!")
date = input()
continue
elif (int(date)<1 or int(date)>2):
print("Please Enter valid input!!")
date = input()
continue
break
if (int(date) == 1):
date = "April 20, 2019"
else:
date = "April 21, 2019"
team = input("Enter team size (1 for solo event): \n")
while(True):
if (not team.isdigit()):
print("Please Enter valid input!!")
team = input()
continue
elif (int(team)<1):
print("Please Enter valid input!!")
team = input()
continue
team = int(team)
break
entry = input("Enter entry_fee for event (0 for no fee): \n")
while(True):
if (not entry.isdigit()):
print("Please Enter valid input!!")
entry = input()
continue
elif (int(entry)<0):
print("Please Enter valid input!!")
entry = input()
continue
entry = int(entry)
break
prize = input("Enter prize_MONEY for event ,0 for no prize money:( \n")
while(True):
if (not prize.isdigit()):
print("Please Enter valid input!!")
prize = input()
continue
elif (int(prize)<0):
print("Please Enter valid input!!")
entry = input()
continue
prize = int(prize)
break
material = input("Enter Material Required (Leave Empty for nothing): \n")
location = input("Enter a location: \n")
if (location ==""):
print("Enter a location please: ")
location = input()
print("\nHERE IS YOUR FINAL DATA, which you can't edit now :p\n")
print("Event_name: " + event_name)
print("Event_date: " + date)
print("Team_size: " + str(team))
print("Entry_fee: " + str(entry))
print("Prize_money: " + str(prize))
print("Material_Required: " + material)
print("Location: " + location + "\n")
final = (event_name, date, team, entry, prize, material, location)
con.execute('''INSERT INTO events(Event_name, event_date, team_size, entry_fee, prize_money, material_required, location)
VALUES(?,?,?,?,?,?,?)''', final)
con.commit()
con.close()
print("\nWait You need to add at least one organizer to your Event, Let Go! \n")
create_organizer(event_name, "")
print("\nLets add initial publicity details for event")
create_publicity(event_name)
print("\nAdd sponsorship details")
create_spons(event_name)
def create_team():
team_name = input("Enter Name of Team: \n")
while(team_name == ""):
team_name = input("Do you Really want an empty name for your Team!: \n")
con = sqlite3.connect('fest.db')
check = con.execute("SELECT Team_name From teams WHERE Team_name = ?", (team_name,))
check = check.fetchone()
while (check is not None):
team_name = input("Team Already Exists. Enter Again: \n")
check = con.execute("SELECT Team_name From teams WHERE Team_name = ?", (team_name,))
check = check.fetchone()
head_name = input("Enter Head name for the team: \n")
while(head_name == ""):
head_name = input("Enter some name: \n")
budget = input("Enter a positive budget for the team: (0 for no budget): \n")
while(True):
if (not budget.isdigit()):
print("Please Enter valid input!!")
budget = input()
continue
elif (int(budget)<0):
print("Please Enter valid input!!")
budget = input()
continue
budget = int(budget)
break
print("\nHERE IS YOUR FINAL DATA, which you can't edit now :p\n")
print("Team_name: " + team_name)
print("Head_name: " + head_name)
print("Budget: " + str(budget) + "\n")
final = (team_name, head_name, budget)
con.execute(con.execute('''INSERT INTO teams(Team_name, head_name, budget)
VALUES(?,?,?s)''', final))
con.commit()
con.close()
print("\nWait You need to add at least one organizer to your Event, Let Go! \n")
create_organizer("", team_name)
def create_organizer(event_name, team_name):
first_name = input("Enter first name of Organizer: \n")
while(first_name == ""):
first_name = input("Enter some first_name: \n")
last_name = input("Enter last name of Organizer: \n")
while(last_name == ""):
last_name = input("Enter some last_name: \n")
cno = input("Enter contact number of the Organizer : \n")
while(True):
if (not cno.isdigit()):
print("Please Enter valid input!!")
cno = input()
continue
elif (int(cno)<0):
print("Please Enter valid input!!")
cno = input()
continue
cno = int(cno)
break
if (event_name!=""):
print("\nHERE IS YOUR FINAL DATA, which you can't edit now :p\n")
print("First_name: " + first_name)
print("Last_name: " + last_name)
print("Contact_no: " + str(cno))
print("Event_name: " + event_name + "\n")
final = (first_name, last_name, cno, event_name)
con = sqlite3.connect('fest.db')
con.execute('''INSERT INTO organizers(first_name, last_name, contact_no, Event_name)
VALUES(?,?,?,?)''', final)
con.commit()
con.close()
elif (team_name!=""):
print("\nHERE IS YOUR FINAL DATA, which you can't edit now :p\n")
print("First_name: " + first_name)
print("Last_name: " + last_name)
print("Contact_no: " + str(cno))
print("Team_name: " + team_name + "\n")
final = (first_name, last_name, cno, team_name)
con = sqlite3.connect('fest.db')
con.execute('''INSERT INTO organizers(first_name, last_name, contact_no, Team_name)
VALUES(?,?,?,?)''', final)
con.commit()
con.close()
else:
print("Enter 1 to add organizer to an Event!")
print("Enter 2 to add organizer to a Team!")
i = input()
while(True):
if (not i.isdigit()):
print("Please Enter valid input!!")
i = input()
continue
elif (int(i)<1 or int(i)>2):
print("Please Enter valid input!!")
i = input()
continue
break
i = int(i)
if (i==1):
print("\nChoose from given events: \n")
con = sqlite3.connect('fest.db')
check = con.execute("SELECT Event_name From events")
for e in check:
print(e[0])
event_name = input()
check = con.execute("SELECT Event_name From events WHERE Event_name = ?", (event_name,))
check = check.fetchone()
while(event_name == ""):
event_name = input("Please choose from given events: \n")
while (check is None):
event_name = input("Please choose from given events: \n")
check = con.execute("SELECT Event_name From events WHERE Event_name = ?", (event_name,))
check = check.fetchone()
print("\nHERE IS YOUR FINAL DATA, which you can't edit now :p\n")
print("First_name: " + first_name)
print("Last_name: " + last_name)
print("Contact_no: " + str(cno))
print("Event_name: " + event_name + "\n")
final = (first_name, last_name, cno, event_name)
con.execute('''INSERT INTO organizers(first_name, last_name, contact_no, Event_name)
VALUES(?,?,?,?)''', final)
con.commit()
con.close()
else:
print("\nChoose from given teams: \n")
con = sqlite3.connect('fest.db')
check = con.execute("SELECT Team_name From teams")
for e in check:
print(e[0])
team_name = input()
check = con.execute("SELECT Team_name From teams WHERE Team_name = ?", (team_name,))
check = check.fetchone()
while(team_name == ""):
team_name = input("Please choose from given teams: \n")
while (check is None):
team_name = input("Please choose from given teams: \n")
check = con.execute("SELECT Team_name From teams WHERE Team_name = ?", (team_name,))
check = check.fetchone()
print("\nHERE IS YOUR FINAL DATA, which you can't edit now :p\n")
print("First_name: " + first_name)
print("Last_name: " + last_name)
print("Contact_no: " + str(cno))
print("Team_name: " + team_name + "\n")
final = (first_name, last_name, cno, team_name)
con.execute('''INSERT INTO organizers(first_name, last_name, contact_no, Team_name)
VALUES(?,?,?,?)''', final)
con.commit()
con.close()
def create_participant():
pname = input("\nEnter name of participant: \n")
while(pname == ""):
pname = input("Enter some name: \n")
sc = input("Enter name of school/college of partipant: \n")
while(sc == ""):
sc = input("Enter some input: \n")
cno = input("Enter contact number of the Participant : \n")
while(True):
if (not cno.isdigit()):
print("Please Enter valid input!!")
cno = input()
continue
elif (int(cno)<0):
print("Please Enter valid input!!")
cno = input()
continue
cno = int(cno)
break
email = input("Enter email id of participant: \n")
while(email == ""):
email = input("Enter some input: \n")
con = sqlite3.connect('fest.db')
check = con.execute("SELECT Participant_name From participants WHERE contact_no = ?", (cno,))
check = check.fetchone()
if (check is None):
final_participant = (pname, sc, cno, email)
con.execute('''INSERT INTO participants(Participant_name, school_college, contact_no, email_id)
VALUES(?,?,?,?)''', final_participant)
con.commit()
con.close()
print("\nChoose from given events: \n")
con = sqlite3.connect('fest.db')
check = con.execute("SELECT Event_name From events")
for e in check:
print(e[0])
event_name = input()
check = con.execute("SELECT Event_name From events WHERE Event_name = ?", (event_name,))
check = check.fetchone()
while(event_name == ""):
event_name = input("Please choose from given events: \n")
while (check is None):
event_name = input("Please choose from given events: \n")
check = con.execute("SELECT Event_name From events WHERE Event_name = ?", (event_name,))
check = check.fetchone()
print("\nHERE IS YOUR FINAL DATA, which you can't edit now :p\n")
print("Participant_name: " + pname)
print("School/College: " + sc)
print("Contact_no: " + str(cno))
print("Email_id: " + email)
print("Event_name: " + event_name + "\n")
final = (event_name, pname)
con.execute('''INSERT INTO event_participant(Event_name, Participant_name)
VALUES(?,?)''', final)
con.commit()
con.close()
def create_publicity(event_name):
online_reach = input("Enter online reach of event: \n")
while(True):
if (not online_reach.isdigit()):
print("Please Enter valid input!!")
online_reach = input()
continue
elif (int(online_reach)<0):
print("Please Enter valid input!!")
online_reach = input()
continue
online_reach = int(online_reach)
break
onground_reach = input("Enter onground reach of event: \n")
while(True):
if (not onground_reach.isdigit()):
print("Please Enter valid input!!")
onground_reach = input()
continue
elif (int(onground_reach)<0):
print("Please Enter valid input!!")
onground_reach = input()
continue
onground_reach = int(onground_reach)
break
posters = input("Enter posters required for event: \n")
while(True):
if (not posters.isdigit()):
print("Please Enter valid input!!")
posters = input()
continue
elif (int(posters)<0):
print("Please Enter valid input!!")
posters = input()
continue
posters = int(posters)
break
final = (event_name, online_reach, onground_reach, posters)
con = sqlite3.connect('fest.db')
con.execute('''INSERT INTO publicity_details(Event_name, online_reach, onground_reach, posters)
VALUES(?,?,?,?)''', final)
con.commit()
con.close()
def create_spons(event_name):
cname = input("\nEnter Company name giving spons: \n")
while(cname == ""):
cname = input("Enter some input: \n")
con = sqlite3.connect('fest.db')
check = con.execute("SELECT Company_name From sponsorships WHERE Company_name = ?", (cname,))
check = check.fetchone()
while(check is not None):
cname = input("Company Already Exists. Enter Again: \n")
check = con.execute("SELECT Company_name From sponsorships WHERE Company_name = ?", (cname,))
check = check.fetchone()
level = input("Enter level of spons(1,2,3): \n")
while(True):
if (not level.isdigit()):
print("Please Enter valid input!!")
level = input()
continue
elif (int(level)<1 or int(level)>3):
print("Please Enter valid input!!")
level = input()
continue
level = int(level)
break
final_company = (cname, event_name, level)
con.execute('''INSERT INTO sponsorships(Company_name, Event_name, level)
VALUES(?,?,?)''', final_company)
print("Enter y to add some requirements(may be a stall): \n")
y = input()
if (y == "y"):
no = input("Enter number of requirements: \n")
while(True):
if (not no.isdigit()):
print("Please Enter valid input!!")
no = input()
continue
elif (int(no)<0):
print("Please Enter valid input!!")
no = input()
continue
no = int(no)
break
for i in range(no):
req = input("Enter the requirement: \n")
if (req==""):
req = input("Enter some requirement: \n")
final_req = (req, cname)
con.execute('''INSERT INTO other_requirements(requirement, Company_name)
VALUES(?,?)''', final_req)
print("Enter y to add some inkind/cash: \n")
y = input()
if (y == "y"):
no = input("Enter number of inputs: \n")
while(True):
if (not no.isdigit()):
print("Please Enter valid input!!")
no = input()
continue
elif (int(no)<0):
print("Please Enter valid input!!")
no = input()
continue
no = int(no)
break
for i in range(no):
ink = input("Enter the input: \n")
if (ink==""):
ink = input("Enter some input: \n")
final_ink = (ink, cname)
con.execute('''INSERT INTO inkind_cash(inkind, Company_name)
VALUES(?,?)''', final_ink)
con.commit()
con.close()