-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue_ids_censored.py
58 lines (44 loc) · 1.56 KB
/
queue_ids_censored.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
"""queue_ids.py
## **This is a Python script that extracts queue_id information from a JSON file found on the riot api documentation website**
"""
import pandas as pd
import pymysql
from sqlalchemy import create_engine
import json
#This code only needs to be run once
#Create sql table in RDS if it doesn't exist
def create_table(cursor):
sql = ('''CREATE TABLE IF NOT EXISTS queue_id_info (
queue_id int PRIMARY KEY,
queue_name VARCHAR(50)
)''')
cursor.execute(sql)
def convert_json_to_df(df):
json_file = open('lol_queues.json')
lol_queues = json.load(json_file)
for queue in lol_queues:
queue_id = queue['queueId']
queue_name = queue['description']
df = df.append({'queue_id': queue_id, 'queue_name': queue_name}, ignore_index = True)
json_file.close()
return df
#Amazon RDS information
dbname = 'XXX'
user = 'XXX'
password = 'XXX'
host = 'XXX'
port = 3306
#create sqlalchemy engine
db_data = 'mysql+pymysql://'+user+':'+password+'@'+host+':'+str(port)+'/'+dbname
engine = create_engine(db_data)
#connect to database
db = pymysql.connect(user = user, password = password,
host = host, database = dbname, port = port)
cursor = db.cursor()
#create MySQL table if it has not been created
create_table(cursor)
#initialize & populate dataframe
df = pd.DataFrame(columns = ['queue_id', 'queue_name'])
df = convert_json_to_df(df)
#load to rds
df.to_sql('queue_id_info', engine, if_exists = 'append', index = False)