-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_insert.py
829 lines (723 loc) · 30.7 KB
/
table_insert.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
import sqlite3
import json
import pandas as pd
import os
##-----------------------------------------
## USERS!!!!!
##-----------------------------------------
# Counts the total lines in a file
# Change the directory to where the mongodb-sql-etl directory is located
directory = "C:/Users/Ben Fleming/Desktop/TAMID/mongodb-sql-etl/"
directory += "External_data"
file = "users.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the users_clean.json file
file = "users_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file users_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
df = pd.read_json('users.json', lines=True)
df.to_json('users_clean.json')
# Clearing the content.db database and then restarting the connection
conn = sqlite3.connect("content.db")
conn.execute("DELETE FROM users;")
conn.commit()
conn.close()
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
query = "INSERT INTO users ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) != "_id":
query = query + "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
# Access each user in the users table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the json
for key in data:
# These three columns are distinct objects need to ask Shaul but making them NULL for now
if str(key) == "_id":
continue
elif str(key) == "personsOfInterest":
sql_code += "\'{"
for item in data[key][str(index)]:
sql_code += "\"" + str(item) + "\"" + ", "
if len(data[key][str(index)]) != 0:
sql_code = sql_code[0:len(sql_code) - 2]
sql_code += "}\', "
elif str(key) == "motivations":
sql_code += "NULL, "
else:
# Any empty value will be labeled as NULL in the table
if data[key][str(index)] == None or str(data[key][str(index)]) == "NULL" or data[key][str(index)] == "None":
sql_code += "NULL, "
else:
# Some of the values for createdTime variable are nested in a dictionary
if str(key) == "createdTime":
# This will extract the data if it's nested in a dictionary
if type(data[key][str(index)]) == type({}):
sql_code += "\'" + data[key][str(index)]["$date"] + "\'"
# If the data isn't in a dictionary add it normally
else:
sql_code += "\'" + data[key][str(index)] + "\'"
else:
# Non string objects will be added normally to the query
if type (data[key][str(index)]) == type (2) or type (data[key][str(index)]) == type (2.0) or type (data[key][str(index)]) == type(True):
sql_code += str(data[key][str(index)])
# Need to surround any string in '' so that the execute command treats them like a string
else:
sql_code += "\'" + str(data[key][str(index)]) + "\'"
sql_code += ", "
if index != lines - 1:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + "),\n"
else:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + ")"
query += sql_code
query += ";"
conn.execute(query)
conn.commit()
print("User Values inserted successfully :)")
conn.close()
##-----------------------------------------
## RESELLERS!!!!!
##-----------------------------------------
file = "resellers.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the resellers_clean.json file
file = "resellers_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file resellers_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
# Change for your files
df = pd.read_json('External_data/resellers.json', lines=True)
df.to_json('External_data/resellers_clean.json')
# Clearing the content.db database and then restarting the connection
conn = sqlite3.connect("content.db")
conn.execute("DELETE FROM resellers;")
conn.commit()
conn.close()
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
query = "INSERT INTO resellers ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if key != "_id":
query = query + "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
# Access each user in the resellers table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the json (NEED TO DO THIS)
for key in data:
if str(key) == "_id":
continue
else:
# Any empty value will be labeled as NULL in the table
if data[key][str(index)] == None or str(data[key][str(index)]) == "NULL" or data[key][str(index)] == "None":
sql_code += "NULL, "
#adding the rest of the strings to the query
else:
sql_code += "\'" + str(data[key][str(index)]) + "\'"
sql_code += ", "
#removing last comma from list
if index != lines - 1:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + "),\n"
else:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + ")"
query += sql_code
query += ";"
conn.execute(query)
conn.commit()
print("Resellers Values inserted successfully :)")
conn.close()
##-----------------------------------------
## MOTIVATIONID!!!!!
##-----------------------------------------
file = "motivations.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the users_clean.json file
file = "motivations_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file users_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
# Change for your files
df = pd.read_json('External_data/motivations.json', lines=True)
df.to_json('External_data/motivations_clean.json')
# Clearing the content.db database and then restarting the connection
conn = sqlite3.connect("content.db")
conn.execute("DELETE FROM motivationId;")
conn.commit()
conn.close()
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
query = "INSERT INTO motivationId ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) == '_id' :
continue
query = query + "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
# Access each user in the users table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the json (NEED TO DO THIS)
for key in data :
if str(key) == '_id' :
continue
else :
if data[key][str(index)] == None or str(data[key][str(index)]) == "NULL" or data[key][str(index)] == "None" :
sql_code += "NULL, "
else :
if str(key) == "insights" :
sql_code += "\'{"
for item in data[key][str(index)]:
sql_code += "\"" + str(item) + "\"" + ", "
if len(data[key][str(index)]) != 0 :
sql_code = sql_code[0:len(sql_code) - 2]
sql_code += "}\'"
else :
sql_code += "\'" + str(data[key][str(index)]) + "\'"
sql_code += ", "
sql_code = sql_code[0:len(sql_code) - 2] + ")"
if index != lines - 1 :
sql_code += ",\n"
query += sql_code
query += ";"
conn.execute(query)
conn.commit()
print("MotivationId Values inserted successfully :)")
conn.close()
##-----------------------------------------
## EngagmentTips!!!!!!!
##-----------------------------------------
file = "engagementTips.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the engagementTips_clean.json file
file = "engagementTips_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file engagementTips_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
df = pd.read_json('engagementTips.json', lines=True)
df.to_json('engagementTips_clean.json')
# Clearing the content.db database and then restarting the connection
# This is only there if you need to clear the database and want to not import
# duplicates.
conn = sqlite3.connect("content.db")
conn.execute("DELETE FROM engagementTips;")
conn.commit()
conn.close()
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
query = "INSERT INTO engagementTips ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) != "_id":
query = query + "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
# Access each user in the engagementTips table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the json
for key in data:
# These three columns are distinct objects need to ask Shaul but making them NULL for now
if str(key) == "_id":
continue
else:
currentValue = data[key][str(index)]
# Any empty value will be labeled as NULL in the table
if currentValue == None or str(currentValue) == "NULL" or currentValue == "None":
sql_code += "NULL, "
else:
# Non string objects will be added normally to the query
if type (currentValue) == int or type (currentValue) == float or type (currentValue) == bool:
sql_code += str(currentValue)
# Need to surround any string in '' so that the execute command treats them like a string
else:
sql_code += "\'" + str(currentValue) + "\'"
sql_code += ", "
if index != lines - 1:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + "),\n"
else:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + ")"
query += sql_code
query += ";"
conn.execute(query)
conn.commit()
print("engagementTips Values inserted successfully :)")
conn.close()
##-----------------------------------------
## engagementMessages and messageParams!!!!!
##-----------------------------------------
file = "engagementMessages.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the users_clean.json file
file = "engagementMessages_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file users_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
# Change for your files
df = pd.read_json('External_data/engagementMessages.json', lines=True)
df.to_json('External_data/engagementMessages_clean.json')
# Clearing the content.db databases and then restarting the connection
conn = sqlite3.connect("content.db")
conn.execute("DELETE FROM engagementMessages;")
conn.execute("DELETE FROM messageParams;")
conn.commit()
conn.close()
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
# query is used to generate the query for engagementMessages table
# queryMessageParams is used to generate the query for messageParams table
query = "INSERT INTO engagementMessages ("
queryMessageParams = "INSERT INTO messageParams ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) == '_id' :
continue
elif str(key) == "messageParams":
query += "messageParamId, "
queryMessageParams += "messageParamId, "
for subKeys in data[str(key)]['0']:
queryMessageParams += str(subKeys) + ", "
else:
query += "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
queryMessageParams = queryMessageParams[0:len(queryMessageParams) - 2] + ") \nVALUES"
messageParamsCounter = 0
# Access each user in the users table with the outer for loop
for index in range(lines):
sql_code = "("
sql_code_message = "("
# Iterates through the clean json (NEED TO DO THIS)
for key in data :
currentValue = data[key][str(index)]
if str(key) == '_id' :
continue
else :
if currentValue == None or str(currentValue) == "NULL" or currentValue == "None" :
sql_code += "NULL, "
else :
if str(key) == "timestamp":
# This will extract the data if it's nested in a dictionary
if type(currentValue) == dict:
sql_code += "\'" + currentValue["$date"] + "\'"
# If the data isn't in a dictionary add it normally
else:
sql_code += "\'" + currentValue + "\'"
# When we get to the messageParams key we are going to insert the data into the messageParams table
# Created a new column in both tables to be used as a foreign key. The foreign key is called messageParamId
elif str(key) == "messageParams":
sql_code += str(messageParamsCounter)
sql_code_message += str(messageParamsCounter) + ", "
for subKeys in currentValue:
sql_code_message += "\'" + currentValue[subKeys] + "\'"
sql_code_message += ", "
messageParamsCounter += 1
else :
if type (currentValue) == int:
sql_code += str(currentValue)
else:
sql_code += "\'" + str(currentValue) + "\'"
sql_code += ", "
sql_code = sql_code[0:len(sql_code) - 2] + ")"
sql_code_message = sql_code_message[0:len(sql_code_message) - 2] + ")"
if index != lines - 1 :
sql_code += ",\n"
sql_code_message += ",\n"
query += sql_code
queryMessageParams += sql_code_message
query += ";"
queryMessageParams += ";"
conn.execute(query)
conn.execute(queryMessageParams)
conn.commit()
print("EngagmentMessages Values inserted successfully :)")
print("messageParams Values inserted successfully :)")
conn.close()
##-----------------------------------------
## Moovs!!!!!!!
##-----------------------------------------
file = "moovs.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the moovs_clean.json file
file = "moovs_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file moovs_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
df = pd.read_json('External_data/moovs.json', lines=True)
df.to_json('External_data/moovs_clean.json')
# Clearing the content.db database and then restarting the connection
# This is only there if you need to clear the database and want to not import
# duplicates.
conn = sqlite3.connect("content.db")
conn.execute("DELETE FROM moovs;")
conn.commit()
conn.close()
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
query = "INSERT INTO moovs ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) != "_id":
query = query + "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
# Access each user in the moovs table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the json
for key in data:
# These three columns are distinct objects need to ask Shaul but making them NULL for now
if str(key) == "_id":
continue
elif str(key) == "steps":
sql_code += "\'{" + ""
for item in data[key][str(index)]:
sql_code += "\"" + item["id"] + "\"" + ","
sql_code = sql_code[0:len(sql_code) - 1]
sql_code += "}\', "
else:
currentValue = data[key][str(index)]
# Any empty value will be labeled as NULL in the table
if currentValue == None or str(currentValue) == "NULL" or currentValue == "None":
sql_code += "NULL, "
else:
# Non string objects will be added normally to the query
if type (currentValue) == int or type (currentValue) == float or type (currentValue) == bool:
sql_code += str(currentValue)
# Need to surround any string in '' so that the execute command treats them like a string
else:
sql_code += "\'" + str(currentValue) + "\'"
sql_code += ", "
if index != lines - 1:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + "),\n"
else:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + ")"
query += sql_code
query += ";"
conn.execute(query)
conn.commit()
print("moovs Values inserted successfully :)")
conn.close()
##-----------------------------------------
## activeMoovs, activeMoovsEvents, and activeMoovsSteps!!!!!
##-----------------------------------------
directory = "C:/Users/Ben Fleming/Desktop/TAMID/mongodb-sql-etl/"
directory += "External_data"
file = "activeMoovs.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the users_clean.json file
file = "activeMoovs_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file users_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
# Change for your files
df = pd.read_json('External_data/activeMoovs.json', lines=True)
df.to_json('External_data/activeMoovs_clean.json')
# Clearing the content.db database and then restarting the connection
conn = sqlite3.connect("content.db")
conn.execute("DELETE FROM activeMoovs;")
conn.execute("DELETE FROM activeMoovsEvents;")
conn.execute("DELETE FROM activeMoovsSteps;")
conn.commit()
conn.close()
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
# query is used to generate the query for activeMoovs table
# queryMessageParams is used to generate the query for messageParams table
query = "INSERT INTO activeMoovs ("
queryEvent = "INSERT INTO activeMoovsEvents (id,"
queryStep = "INSERT INTO activeMoovsSteps ("
idCount = 0
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) == '_id' :
continue
elif str(key) == "events":
query += "eventTimeStamp, "
for subKeys in data[str(key)]['0'][0]:
queryEvent += str(subKeys) + ", "
elif str(key) == "steps":
query += "stepId, "
for subKeys in data[str(key)]['0'][0]:
queryStep += str(subKeys) + ", "
else:
query += "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
queryEvent = queryEvent[0:len(queryEvent) - 2] + ") \nVALUES"
queryStep = queryStep[0:len(queryStep) - 2] + ") \nVALUES"
sql_code_event = ""
sql_code_step = ""
# Access each user in the users table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the clean json (NEED TO DO THIS)
for key in data :
currentValue = data[key][str(index)]
if str(key) == '_id' :
continue
else :
if currentValue == None or str(currentValue) == "NULL" or currentValue == "None" :
sql_code += "NULL, "
else :
if str(key) == "startDate":
# This will extract the data if it's nested in a dictionary
if type(currentValue) == dict:
sql_code += "\'" + currentValue["$date"] + "\'"
# If the data isn't in a dictionary add it normally
else:
sql_code += "\'" + currentValue + "\'"
elif str(key) == "endDate":
# This will extract the data if it's nested in a dictionary
if type(currentValue) == dict:
sql_code += "\'" + currentValue["$date"] + "\'"
# If the data isn't in a dictionary add it normally
else:
sql_code += "\'" + currentValue + "\'"
elif str(key) == "plannedEndDate":
# This will extract the data if it's nested in a dictionary
if type(currentValue) == dict:
sql_code += "\'" + currentValue["$date"] + "\'"
# If the data isn't in a dictionary add it normally
else:
sql_code += "\'" + currentValue + "\'"
# When we get to the messageParams key we are going to insert the data into the messageParams table
# Created a new column in both tables to be used as a foreign key. The foreign key is called messageParamId
elif str(key) == "events":
sql_code += "\'{" + ""
for item in data[key][str(index)]:
sql_code += "\"" + item["timeStamp"] + "\"" + ", "
sql_code_event += "(" + str(idCount) +", "
for subKeys in item:
if type (item[subKeys]) == int or type(item[subKeys]) == float or type(item[subKeys]) == bool:
sql_code_event += str(item[subKeys]) + ", "
else:
sql_code_event += "\'" + str(item[subKeys]) + "\'" + ", "
sql_code_event = sql_code_event[0:len(sql_code_event) - 2] + "),"
idCount += 1
sql_code = sql_code[0:len(sql_code) - 2]
sql_code += "}\'"
elif str(key) == "steps":
sql_code += "\'{" + ""
for item in data[key][str(index)]:
sql_code += "\"" + item["id"] + "\"" + ", "
sql_code_step += "("
for subKeys in item:
if type (item[subKeys]) == int or type(item[subKeys]) == float or type(item[subKeys]) == bool:
sql_code_step += str(item[subKeys]) + ", "
else:
sql_code_step += "\'" + str(item[subKeys]) + "\'" + ", "
sql_code_step = sql_code_step[0:len(sql_code_step) - 2] + "),"
sql_code = sql_code[0:len(sql_code) - 2]
sql_code += "}\'"
else :
if type (currentValue) == int or type(currentValue) == float or type(currentValue) == bool:
sql_code += str(currentValue)
else:
sql_code += "\'" + str(currentValue) + "\'"
sql_code += ", "
sql_code = sql_code[0:len(sql_code) - 2] + ")"
if index != lines - 1 :
sql_code += ",\n"
query += sql_code
queryEvent += sql_code_event
queryStep += sql_code_step
queryEvent = queryEvent[0:len(queryEvent) - 1]
queryStep = queryStep[0:len(queryStep) - 1]
query += ";"
queryEvent += ";"
queryStep += ";"
conn.execute(query)
conn.execute(queryEvent)
conn.execute(queryStep)
conn.commit()
print("activeMoovs Values inserted successfully :)")
print("activeMoovsEvents Values inserted successfully :)")
print("activeMoovsSteps Values inserted successfully :)")
conn.close()
##-----------------------------------------
## accessTokens!!!!!
##-----------------------------------------
# Counts the total lines in a file
# Change the directory to where the mongodb-sql-etl directory is located
file = "accessTokens.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the accessTokens_clean.json file
file = "accessTokens_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file accessTokens_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
df = pd.read_json('External_data/accessTokens.json', lines=True)
df.to_json('External_data/accessTokens_clean.json')
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
query = "INSERT INTO accessTokens ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) != "_id":
query = query + "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
# Access each user in the accessTokens table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the json
for key in data:
# These three columns are distinct objects need to ask Shaul but making them NULL for now
if str(key) == "_id":
continue
else:
# Any empty value will be labeled as NULL in the table
if data[key][str(index)] == None or str(data[key][str(index)]) == "NULL" or data[key][str(index)] == "None":
sql_code += "NULL, "
else:
# Non string objects will be added normally to the query
if type (data[key][str(index)]) == int or type (data[key][str(index)]) == float or type (data[key][str(index)]) == bool:
sql_code += str(data[key][str(index)])
# Need to surround any string in '' so that the execute command treats them like a string
else:
sql_code += "\'" + str(data[key][str(index)]) + "\'"
sql_code += ", "
if index != lines - 1:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + "),\n"
else:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + ")"
query += sql_code
query += ";"
conn.execute(query)
conn.commit()
print("Access Token Values inserted successfully :)")
conn.close()
##-----------------------------------------
## historichistoricAccessTokens!!!!!
##-----------------------------------------
file = "historicAccessTokens.json"
file_path = os.path.join(directory, file)
with open(file_path, 'rb') as f:
data = f.read()
file = data.decode('utf-8').splitlines()
lines = len(file)
# Sets the file path for the historicAccessTokens_clean.json file
file = "historicAccessTokens_clean.json"
file_path = os.path.join(directory, file)
# Checking to see if the file historicAccessTokens_clean.json exists so it isn't remade
if not os.path.exists(file_path):
# Cleans the files
df = pd.read_json('External_data/historicAccessTokens.json', lines=True)
df.to_json('External_data/historicAccessTokens_clean.json')
conn = sqlite3.connect("content.db")
data = {}
# Read in the JSON data from a file
with open(file_path, 'r') as f:
data = json.load(f)
query = "INSERT INTO historicAccessTokens ("
# Getting all of the keys so we can set the columns in the Insert INTO statement
for key in data:
if str(key) != "_id":
query = query + "" + key + ", "
query = query[0:len(query) - 2] + ") \nVALUES"
# Access each user in the historicAccessTokens table with the outer for loop
for index in range(lines):
sql_code = "("
# Iterates through the json
for key in data:
# These three columns are distinct objects need to ask Shaul but making them NULL for now
if str(key) == "_id":
continue
else:
# Any empty value will be labeled as NULL in the table
if data[key][str(index)] == None or str(data[key][str(index)]) == "NULL" or data[key][str(index)] == "None":
sql_code += "NULL, "
else:
# Non string objects will be added normally to the query
if type (data[key][str(index)]) == int or type (data[key][str(index)]) == float or type (data[key][str(index)]) == bool:
sql_code += str(data[key][str(index)])
# Need to surround any string in '' so that the execute command treats them like a string
else:
sql_code += "\'" + str(data[key][str(index)]) + "\'"
sql_code += ", "
if index != lines - 1:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + "),\n"
else:
# Removes last comma from the list
sql_code = sql_code[0:len(sql_code) - 2] + ")"
query += sql_code
query += ";"
conn.execute(query)
conn.commit()
print("Historic Access Token Values inserted successfully :)")
conn.close()