This repository has been archived by the owner on Jan 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_parser.py
171 lines (137 loc) · 5.51 KB
/
data_parser.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
import sqlite3
import json
from datetime import datetime
from traceback import print_tb
from helpers import create_table_if_not_exists, get_db_path, get_timeframe_path, format_data, \
acceptable, get_timeframes
timeframes = get_timeframes()
sql_transaction = []
start_row = 0
# start_row = 8400000 # that is where I stopped it last time
print(timeframes)
def find_parent(pid):
try:
sql = "SELECT comment FROM parent_reply WHERE comment_id = '{}' LIMIT 1".format(pid)
c.execute(sql)
result = c.fetchone()
if result is not None:
res = result[0]
if res is None or res == 'False' or res == '0':
return False
return res
else:
return False
except Exception as e:
print('find_parent', e)
print_tb(e)
return False
def find_existing_score(pid):
if pid is False:
return False
try:
sql = "SELECT score FROM parent_reply WHERE parent_id = '{}' LIMIT 1".format(pid)
c.execute(sql)
result = c.fetchone()
if result is not None:
return result[0]
else:
return False
except Exception as e:
print('find_existing_score', e)
print_tb(e)
return False
def transaction_bldr(sql, bindings = None):
global sql_transaction
sql_transaction.append([sql, bindings])
if len(sql_transaction) > 2000:
c.execute('BEGIN TRANSACTION')
for s, b in sql_transaction:
try:
if b is not None:
c.execute(s, b)
else:
c.execute(s)
# except Exception as e:
# print(str(datetime.now()), s, e)
except:
pass
connection.commit()
sql_transaction = []
def sql_insert_replace_comment(commentid, parentid, parent, comment, subreddit, time, score):
try:
sql = """UPDATE parent_reply
SET parent_id = ?,
comment_id = ?,
parent = ?,
comment = ?,
subreddit = ?,
unix = ?,
score = ?
WHERE parent_id = ?;"""
b = [parentid, commentid, parent, comment, subreddit, int(time), score, parentid]
transaction_bldr(sql, b)
except Exception as e:
print('sql_insert_replace_comment', e)
print_tb(e)
def sql_insert_has_parent(commentid, parentid, parent, comment, subreddit, time, score):
try:
sql = """INSERT INTO parent_reply (parent_id, comment_id, parent, comment, subreddit, unix, score)
VALUES (?, ?, ?, ?, ?, ?, ?);
"""
b = [parentid, commentid, parent, comment, subreddit, int(time), score]
transaction_bldr(sql, b)
except Exception as e:
print('sql_insert_has_parent', e)
print_tb(e)
def sql_insert_no_parent(commentid, parentid, comment, subreddit, time, score):
try:
sql = """INSERT INTO parent_reply (parent_id, comment_id, comment, subreddit, unix, score)
VALUES (?, ?, ?, ?, ?, ?);"""
b = [parentid, commentid, comment, subreddit, int(time), score]
transaction_bldr(sql, b)
except Exception as e:
print('sql_insert_no_parent', e)
print_tb(e)
for timeframe in timeframes:
with sqlite3.connect(get_db_path(timeframe)) as connection:
c = connection.cursor()
create_table_if_not_exists(c)
row_counter = 0
paired_rows = 0
# with open(get_timeframe_path(timeframe), buffering=1000) as f:
with open(get_timeframe_path(timeframe)) as f:
for row in f:
row_counter += 1
if row_counter >= start_row:
try:
row = json.loads(row)
parent_id = row['parent_id'].split('_')[1]
body = format_data(row['body'])
created_utc = row['created_utc']
score = row['score']
comment_id = row['id']
subreddit = row['subreddit']
parent_data = find_parent(parent_id)
existing_comment_score = find_existing_score(parent_id)
if existing_comment_score:
if score > existing_comment_score:
if acceptable(body):
sql_insert_replace_comment(comment_id, parent_id, parent_data, body, subreddit,
created_utc, score)
else:
if acceptable(body):
if parent_data:
if score >= 2:
sql_insert_has_parent(comment_id, parent_id, parent_data, body, subreddit,
created_utc, score)
paired_rows += 1
else:
sql_insert_no_parent(comment_id, parent_id, body, subreddit, created_utc, score)
except Exception as e:
print(e)
if row_counter % 100000 == 0:
print('Total Rows Read: {}, Paired Rows: {}, Time: {}'.format(row_counter, paired_rows,
str(datetime.now())))
# start from 0
start_row = 0
print('Done')