-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_tables.py
88 lines (63 loc) · 2.55 KB
/
create_tables.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
"""Script for Creating Database and Tables"""
import configparser
import psycopg2
from sql_queries import create_table_queries, drop_table_queries
def create_database(db_config):
"""
- Creates and connects to the sparkifydb
- Returns the connection and cursor to sparkifydb
"""
# connect to default database
conn = psycopg2.connect("host={} dbname={} user={} password={}".format(db_config["HOST"],
db_config["DEFAULT_DB_NAME"],
db_config["DB_USER"],
db_config["DB_PASSWORD"]))
conn.set_session(autocommit=True)
cur = conn.cursor()
# create sparkify database with UTF8 encoding
cur.execute("DROP DATABASE IF EXISTS {}".format(db_config["OUTPUT_DB_NAME"]))
cur.execute("CREATE DATABASE sparkifydb WITH ENCODING 'utf8' TEMPLATE template0")
# close connection to default database
conn.close()
# connect to sparkify database
conn = psycopg2.connect("host={} dbname={} user={} password={}".format(db_config["HOST"],
db_config["OUTPUT_DB_NAME"],
db_config["DB_USER"],
db_config["DB_PASSWORD"]))
cur = conn.cursor()
return cur, conn
def drop_tables(cur, conn):
"""
Drops each table using the queries in `drop_table_queries` list.
"""
for query in drop_table_queries:
try:
cur.execute(query)
conn.commit()
except psycopg2.Error as e:
print("Error Dropping Table using query: ", query)
print(e)
def create_tables(cur, conn):
"""
Creates each table using the queries in `create_table_queries` list.
"""
for query in create_table_queries:
cur.execute(query)
conn.commit()
def main():
"""
- Drops (if exists) and Creates the sparkify database.
- Establishes connection with the sparkify database and gets
cursor to it.
- Drops all the tables.
- Creates all tables needed.
- Finally, closes the connection.
"""
config = configparser.ConfigParser()
config.read('psql.cfg')
cur, conn = create_database(config["DATABASE"])
drop_tables(cur, conn)
create_tables(cur, conn)
conn.close()
if __name__ == "__main__":
main()