-
Notifications
You must be signed in to change notification settings - Fork 4
/
aws_collect_data_semi_manual.py
485 lines (359 loc) · 18.9 KB
/
aws_collect_data_semi_manual.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
import datetime
import mysql.connector
import numpy as np
import os
import psycopg2
from dotenv import load_dotenv, find_dotenv
from v2_dictionaries_and_lists import *
from provisional_list import provisional_list
load_dotenv()
############################################################################################################
'''Verify the credentials before running deployment. '''
############################################################################################################
def populate_raw_table():
'''
Pulls the raw data and puts it down in our database.
'''
try:
# Stablishes connection with our db
connection = psycopg2.connect(user=os.environ.get('aws_db_user'),
password=os.environ.get('aws_db_password'),
host=os.environ.get('aws_db_host'),
port=os.environ.get('aws_db_port'),
database=os.environ.get('aws_db_name'))
# Create the cursor.
cursor = connection.cursor()
# Giving it some help.
for idrow in provisional_list:
# Stablishes connection with Sauti's database.
conn = mysql.connector.connect(user=os.environ.get('sauti_db_user'), password=os.environ.get('sauti_db_password'),host=os.environ.get('sauti_db_host'), database=os.environ.get('sauti_db_name'))
cur = conn.cursor(dictionary=True)
cur.execute('''
SELECT *
FROM platform_market_prices2
WHERE id = %s
''', (idrow,))
rows = cur.fetchall()
cur.close()
conn.close()
if rows:
for row in rows:
market = row['market'].lower().title()
product = row['product'].lower().title()
market = row['market'].lower().title()
country = row['country']
source = row['source']
date_price = row['date'].strftime('%Y-%m-%d')
retail_observed_price = row['retail']
wholesale_observed_price = row['wholesale']
currency_code = row['currency']
unit_scale = row['unit'].lower()
if market in correct_markets_dict:
market = correct_markets_dict[market]
if product in correct_prod_dict:
product = correct_prod_dict[product]
if unit_scale in correct_scale_dict.keys():
unit_scale = correct_scale_dict[unit_scale]
# Pull the source id.
cursor.execute('''
SELECT id
FROM sources
WHERE source_name = %s
''', (source,))
source_id = cursor.fetchall()
if not source_id:
print('This product is not in the products table', product,'.')
error_vector = (row['product'],row['market'],row['country'],row['unit'],row['source'],row['currency'],row['date'],row['retail'],row['wholesale'],row['id'],datetime.date.today(),'product')
query_error_log = '''
INSERT INTO error_logs (
product_name,
market_name,
country_code,
unit_scale,
source_name,
currency_code,
date_price,
retail_observed_price,
wholesale_observed_price,
mysql_db_id,
error_date,
possible_error
)
VALUES (
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s
);
'''
cursor.execute(query_error_log,error_vector)
connection.commit()
print('Error with values:', error_vector, "has been added to the error's table.")
break
else:
source_id = source_id[0][0]
# Verify the product is in the products' table.
cursor.execute('''
SELECT id
FROM products
WHERE product_name = %s
''', (product,))
product_id = cursor.fetchall()
if not product_id:
print('This product is not in the products table', product,'.')
error_vector = (row['product'],row['market'],row['country'],row['unit'],row['source'],row['currency'],row['date'],row['retail'],row['wholesale'],row['id'],datetime.date.today(),'product')
query_error_log = '''
INSERT INTO error_logs (
product_name,
market_name,
country_code,
unit_scale,
source_name,
currency_code,
date_price,
retail_observed_price,
wholesale_observed_price,
mysql_db_id,
error_date,
possible_error
)
VALUES (
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s
);
'''
cursor.execute(query_error_log,error_vector)
connection.commit()
print('Error with values:', error_vector, "has been added to the error's table.")
break
# Verify the market is in the markets' table.
cursor.execute('''
SELECT market_id
FROM markets
WHERE market_name = %s
AND country_code = %s
''', (market,country))
market_id = cursor.fetchall()
if not market_id:
print('This market', market, 'is not in the country', country,'.')
error_vector = (row['product'],row['market'],row['country'],row['unit'],row['source'],row['currency'],row['date'],row['retail'],row['wholesale'],row['id'],datetime.date.today(),'market')
query_error_log = '''
INSERT INTO error_logs (
product_name,
market_name,
country_code,
unit_scale,
source_name,
currency_code,
date_price,
retail_observed_price,
wholesale_observed_price,
mysql_db_id,
error_date,
possible_error
)
VALUES (
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s
);
'''
cursor.execute(query_error_log,error_vector)
connection.commit()
print('Error with values:', error_vector, "has been added to the error's table.")
break
else:
market_id = market_id[0][0]
# Verify the currency is in the currencies' table.
cursor.execute('''
SELECT id
FROM currencies
WHERE currency_code = %s
''', (currency_code,))
currency_id = cursor.fetchall()[0][0]
if not currency_id:
print('This currency is not in the db', currency_code,'.')
error_vector = (row['product'],row['market'],row['country'],row['unit'],row['source'],row['currency'],row['date'],row['retail'],row['wholesale'],row['id'],datetime.date.today(),'currency')
query_error_log = '''
INSERT INTO error_logs (
product_name,
market_name,
country_code,
unit_scale,
source_name,
currency_code,
date_price,
retail_observed_price,
wholesale_observed_price,
mysql_db_id,
error_date,
possible_error
)
VALUES (
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s
);
'''
cursor.execute(query_error_log,error_vector)
connection.commit()
print('Error with values:', error_vector, "has been added to the error's table.")
break
vector = (product,market_id,unit_scale,source_id,currency_code,date_price, retail_observed_price,wholesale_observed_price)
# Verify if the vector is already in the db:
cursor.execute('''
SELECT id
FROM raw_table
WHERE product_name = %s
AND market_id = %s
AND unit_scale = %s
AND source_id = %s
AND currency_code = %s
AND date_price = %s
''', (product,market_id,unit_scale,source_id,currency_code,date_price))
result = cursor.fetchall()
if not result:
query_insert_product_info = '''
INSERT INTO raw_table (
product_name,
market_id,
unit_scale,
source_id,
currency_code,
date_price,
retail_observed_price,
wholesale_observed_price
)
VALUES (
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s
);
'''
cursor.execute(query_insert_product_info,vector)
connection.commit()
print(vector, 'added to the db.')
else:
# print(vector, 'already in the db.')
pass
del result
# cursor.close()
# connection.close()
except (Exception, psycopg2.Error) as error:
print('Error inserting or verifying the values.')
error_vector = (row['product'],row['market'],row['country'],row['unit'],row['source'],row['currency'],row['date'],row['retail'],row['wholesale'],row['id'],datetime.date.today(),'unknown')
query_error_log = '''
INSERT INTO error_logs (
product_name,
market_name,
country_code,
unit_scale,
source_name,
currency_code,
date_price,
retail_observed_price,
wholesale_observed_price,
mysql_db_id,
error_date,
possible_error
)
VALUES (
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s
);
'''
cursor.execute(query_error_log,error_vector)
connection.commit()
print('Error with values:', error_vector, "has been added to the error's table.")
finally:
if (connection):
cursor.close()
connection.close()
print('Connection closed.')
def write_index():
# Stablishes connection with the Stakeholder's db.
conn = mysql.connector.connect(user=os.environ.get('sauti_db_user'), password=os.environ.get('sauti_db_password'),host=os.environ.get('sauti_db_host'), database=os.environ.get('sauti_db_name'))
cur = conn.cursor()
cur.execute('''
SELECT MAX(id)
FROM platform_market_prices2
''')
final_id = cur.fetchall()
if final_id:
final_id = final_id[0][0]
connection = psycopg2.connect(user=os.environ.get('aws_db_user'),
password=os.environ.get('aws_db_password'),
host=os.environ.get('aws_db_host'),
port=os.environ.get('aws_db_port'),
database=os.environ.get('aws_db_name'))
# Create the cursor.
cursor = connection.cursor()
# Define the values to be inserted.
pulled_data = datetime.datetime.now()
vector(pulled_data,final_id)
query_logs = '''
INSERT INTO pulling_logs (
pulled_date,
final_id
)
VALUES (
%s,
%s
);
'''
cursor.execute(query_logs,vector)
connection.commit()
if __name__ == "__main__":
populate_raw_table()
# write_index()