-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathetl.py
More file actions
55 lines (37 loc) · 1.43 KB
/
etl.py
File metadata and controls
55 lines (37 loc) · 1.43 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
import psycopg2
import configparser
from prettytable import from_db_cursor
from sql_queries import copy_table_queries, insert_table_queries, analysis_queries
def load_staging_tables(cur, conn):
"""Load staging tables from .json file located on S3 bucket to Redshift."""
for query in copy_table_queries:
cur.execute(query)
conn.commit()
def insert_tables(cur, conn):
"""Insert data into final tables located on Redshift."""
for query in insert_table_queries:
cur.execute(query)
conn.commit()
def analysis(cur, conn):
"""Run analysis queries related to top 10 artists and songs played."""
for query in analysis_queries:
cur.execute(query)
conn.commit()
table = from_db_cursor(cur)
print(table)
def main():
"""Main function
load_staging_tables: Load staging tables from .json file located on S3 bucket to Redshift.
insert_tables: Insert data into final tables located on Redshift.
analysis: Run analysis queries related to top 10 artists and songs played.
"""
config = configparser.ConfigParser()
config.read('dwh.cfg')
conn = psycopg2.connect("host={} dbname={} user={} password={} port={}".format(*config['CLUSTER'].values()))
cur = conn.cursor()
load_staging_tables(cur, conn)
insert_tables(cur, conn)
analysis(cur, conn)
conn.close()
if __name__ == "__main__":
main()