-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_performance_data.py
233 lines (178 loc) · 6.99 KB
/
get_performance_data.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
#!/usr/bin/env python3
from bs4 import BeautifulSoup
import argparse
import requests
from tqdm import tqdm
from datetime import date
import signal
import tarfile
import csv
import os
def get_latest(mode_arg="osu", type_arg="top", disable_output_arg=False):
page_link = "https://data.ppy.sh"
page_response = requests.get(page_link, timeout=5)
page_content = BeautifulSoup(page_response.content, "html.parser")
page_links = page_content.find_all("a")
filtered_list = []
for page in page_links:
current_page = "".join(page.findAll(text=True)).split("\n")[0]
filename = current_page.split(".")[0]
file_underscore_split = filename.split("_")
if len(file_underscore_split) < 6:
continue
if (
file_underscore_split[-2] == mode_arg
and file_underscore_split[-1] == type_arg
):
year = int(file_underscore_split[0])
month = int(file_underscore_split[1])
day = int(file_underscore_split[2])
file_date = date(year, month, day)
filtered_list.append([file_date, current_page])
latest_file = max(filtered_list, key=lambda i: i[0])[1]
return latest_file
def download_file(filename, directory="./", disable_output_arg=False):
directory_final = directory
if directory_final[-1] != "/":
directory_final += "/"
page_link = "https://data.ppy.sh/{}".format(filename)
page_response = requests.get(page_link)
if not disable_output_arg:
print("Creating file to write to...")
zip_file = open(directory_final + filename, "wb+")
if not disable_output_arg:
print("Starting download...")
data_generator = page_response.iter_content(chunk_size=4096)
if not disable_output_arg:
data_generator = tqdm(data_generator)
for data in data_generator:
zip_file.write(data)
zip_file.close()
def unzip_file(filename, directory="./", disable_output_arg=False):
directory_final = directory
if directory_final[-1] != "/":
directory_final += "/"
tar = tarfile.open(directory_final + filename, "r:bz2")
for member_info in tar.getmembers():
if not disable_output_arg:
print("- extracting: " + member_info.name)
tar.extract(member_info)
tar.close()
def get_first_char(input_string):
for character in input_string:
if character != " " and character != "\t":
return character
return None
def sql_to_csv(filename, directory="./", disable_output_arg=False):
directory_final = directory
if directory_final[-1] != "/":
directory_final += "/"
directory_final += filename
for sql_file in os.listdir(directory_final):
if not os.path.isfile(os.path.join(directory_final, sql_file)):
continue
if sql_file.split(".")[-1] != "sql":
continue
if not disable_output_arg:
print("- converting: " + sql_file)
sql_filename = ".".join(sql_file.split(".")[:-1])
sql_file_open = open(
directory_final + sql_file, "r", encoding="utf8", errors="ignore"
)
csv_file_open = open(directory_final + sql_filename + ".csv", "w+")
sql_file_lines = [i.split("\n")[0] for i in sql_file_open.readlines()]
headers = []
getting_headers = False
line_generator = sql_file_lines
if not disable_output_arg:
line_generator = tqdm(line_generator)
for line in line_generator:
if line.startswith("CREATE TABLE"):
getting_headers = True
continue
if getting_headers:
if get_first_char(line) != "`":
getting_headers = False
csv_file_open.write(",".join(headers) + "\n")
continue
headers.append(line.split("`")[1])
if line.startswith("INSERT INTO"):
values = line.partition("` VALUES ")[2]
latest_row = []
reader = csv.reader(
[values],
delimiter=",",
doublequote=False,
escapechar="\\",
quotechar="'",
strict=True,
)
writer = csv.writer(csv_file_open, quoting=csv.QUOTE_MINIMAL)
for reader_row in reader:
for column in reader_row:
if len(column) == 0 or column == "NULL":
latest_row.append(chr(0))
continue
if column[0] == "(":
new_row = False
if len(latest_row) > 0:
if latest_row[-1][-1] == ")":
latest_row[-1] = latest_row[-1][:-1]
new_row = True
if new_row:
writer.writerow(latest_row)
latest_row = []
if len(latest_row) == 0:
column = column[1:]
latest_row.append(column)
if latest_row[-1][-2:] == ");":
latest_row[-1] = latest_row[-1][:-2]
writer.writerow(latest_row)
sql_file_open.close()
os.remove(directory_final + sql_file)
csv_file_open.close()
def download_and_convert(
mode_arg="osu", type_arg="top", directory_arg="./", disable_output_arg=False
):
if not disable_output_arg:
print("Getting latest file...")
latest_file = get_latest(mode_arg, type_arg, disable_output_arg)
if not disable_output_arg:
print("Connecting to data.ppy.sh...")
download_file(latest_file, directory_arg, disable_output_arg)
if not disable_output_arg:
print("Unzipping file...")
unzip_file(latest_file, directory_arg, disable_output_arg)
if not disable_output_arg:
print("Converting all sql files to csv...")
sql_to_csv(directory_arg, latest_file.split(".")[0], disable_output_arg)
def main():
signal.signal(signal.SIGTERM, exit)
signal.signal(signal.SIGINT, exit)
signal.signal(signal.SIGTSTP, exit)
parser = argparse.ArgumentParser()
parser.add_argument(
"--mode",
nargs="?",
default="osu",
help="Modes: osu, taiko, fruits, mania (Defaults to osu)",
)
parser.add_argument(
"--type", nargs="?", default="top", help="Types: top, random (Defaults to top)"
)
parser.add_argument(
"--output-directory", nargs="?", default="./", help="(Defaults to ./)"
)
parser.add_argument(
"--disable-output",
nargs="?",
default=False,
const=True,
help="Add this to disable progress outputs.",
)
args = parser.parse_args()
download_and_convert(
args.mode, args.type, args.output_directory, args.disable_output
)
if __name__ == "__main__":
main()