-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport.py
199 lines (185 loc) · 6.12 KB
/
import.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
import psycopg2
import api as nba_api
from config import config
def insert_team_to_db():
""" Inserts a new team to the database """
insert_team_query = """
INSERT INTO teams (
team_id,
name,
city,
nickname,
conference,
division,
abbr)
VALUES (%s, %s, %s, %s, %s, %s, %s)
ON CONFLICT (team_id)
DO UPDATE
SET
name = EXCLUDED.name,
city = EXCLUDED.city,
nickname = EXCLUDED.nickname,
conference = EXCLUDED.conference,
division = EXCLUDED.division,
abbr = EXCLUDED.abbr;
"""
rows = nba_api.get_teams()
conn = None
count = 0
try:
params = config()
print("Connecting to the NBA database...")
conn = psycopg2.connect(**params)
print("Inserting records into TEAMS table...: ")
gen_list = list(nba_api.get_teams())
expected_records = len(gen_list)
print("Expected # of records: " + str(expected_records))
cur = conn.cursor()
for row in rows:
row = tuple(row.values())
cur.execute(insert_team_query, row)
conn.commit()
count += 1
print("Total # of records inserted: " + str(count))
cur.close()
print('Finished loading TEAMS table.')
conn.close()
print('Database connection closed.')
except (Exception, psycopg2.DatabaseError) as error:
print("** " + str(error) + " **")
finally:
if conn is not None:
conn.close()
def insert_player_to_db():
""" Inserts players to the database """
insert_player_query = """
INSERT INTO players (
player_id,
first_name,
last_name,
team_id,
position,
jersey,
height_ft,
height_in,
height_m,
weight_ibs,
weight_kg,
dob_utc,
draft_round,
draft_pick,
draft_team,
draft_year,
debut_year,
years_pro,
college,
last_affiliation,
country,
teams,
is_active)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)
ON CONFLICT (player_id)
DO UPDATE
SET
first_name = EXCLUDED.first_name,
last_name = EXCLUDED.last_name,
team_id = EXCLUDED.team_id,
position = EXCLUDED.position,
jersey = EXCLUDED.jersey,
height_ft = EXCLUDED.height_ft,
height_in = EXCLUDED.height_in,
height_m = EXCLUDED.height_m,
weight_ibs = EXCLUDED.weight_ibs,
weight_kg = EXCLUDED.weight_kg,
dob_utc = EXCLUDED.dob_utc,
draft_round = EXCLUDED.draft_round,
draft_pick = EXCLUDED.draft_pick,
draft_team = EXCLUDED.draft_team,
draft_year = EXCLUDED.draft_year,
debut_year = EXCLUDED.debut_year,
years_pro = EXCLUDED.years_pro,
college = EXCLUDED.college,
last_affiliation = EXCLUDED.last_affiliation,
country = EXCLUDED.country,
teams = EXCLUDED.teams,
is_active = EXCLUDED.is_active;
"""
conn = None
row_count = 0
rows = nba_api.get_players()
try:
params = config()
print("Connecting to the NBA database...")
conn = psycopg2.connect(**params)
print("Inserting records into PLAYERS table...: ")
gen_list = list(nba_api.get_players())
expected_records = len(gen_list)
print("Expected # of records: " + str(expected_records))
cur = conn.cursor()
for row in rows:
row = tuple(row.values())
cur.execute(insert_player_query, row)
row_count += 1
conn.commit()
print("Total # of records inserted: " + str(row_count))
cur.close()
print('Finished loading TEAMS table')
conn.close()
print("Database connection closed.")
except (Exception, psycopg2.DatabaseError) as error:
print("** " + str(error) + " **")
finally:
if conn is not None:
conn.close()
print("Database connection closed.")
def insert_coach_to_db():
""" Inserts a new coach to the database """
insert_coach_query = """
INSERT INTO coaches (
coach_id,
first_name,
last_name,
team_id,
college,
is_assistant)
VALUES (%s, %s, %s, %s, %s, %s)
ON CONFLICT (coach_id)
DO UPDATE
SET
first_name = EXCLUDED.first_name,
last_name = EXCLUDED.last_name,
team_id = EXCLUDED.team_id,
college = EXCLUDED.college,
is_assistant = EXCLUDED.is_assistant;
"""
rows = nba_api.get_coaches()
conn = None
row_count = 0
try:
params = config()
print("Connecting to the NBA database...")
conn = psycopg2.connect(**params)
print("Inserting records into COACHES table...: ")
gen_list = list(nba_api.get_coaches())
expected_records = len(gen_list)
print("Expected # of records: " + str(expected_records))
cur = conn.cursor()
for row in rows:
row = tuple(row.values())
cur.execute(insert_coach_query, row)
conn.commit()
row_count += 1
print("Total # of records inserted: " + str(row_count))
cur.close()
print('Finished loading COACHES table.')
conn.close()
print('Database connection closed.')
except (Exception, psycopg2.DatabaseError) as error:
print("** " + str(error) + " **")
finally:
if conn is not None:
conn.close()
if __name__ == '__main__':
insert_team_to_db()
insert_player_to_db()
insert_coach_to_db()