-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_collector.py
66 lines (48 loc) · 1.67 KB
/
data_collector.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
from collections import defaultdict
from pathlib import Path
import urllib3
import json
from time import sleep
from datetime import datetime
temp = (Path(__file__) / ".." / "wanikani_token").resolve()
with open(temp, "r") as t:
wanikani_token = t.read()
def worker():
with open("out_ass.json", "r") as d:
assignments = json.load(d)
http = urllib3.PoolManager()
next_url = f"https://api.wanikani.com/v2/assignments?updated_after={assignments['data_updated_at']}"
temp_data = []
while next_url is not None:
t = http.request("GET",
next_url,
headers={"Authorization": f"Bearer {wanikani_token}"}
)
data = json.loads(t.data.decode("utf-8"))
temp_data.extend(data["data"])
next_url = data["pages"]["next_url"]
if data["data_updated_at"]:
assignments['data_updated_at'] = data['data_updated_at']
print("Got one page. Next ", next_url)
if next_url is not None:
sleep(2)
assignments["data"].update({str(x["id"]): x for x in temp_data})
with open("out_ass.json", "w") as d:
json.dump(assignments, d)
coll = defaultdict(lambda: defaultdict(int))
for k, a in assignments["data"].items():
d = a["data"]
t = d["subject_type"]
s = d["srs_stage"]
coll[t][s] += 1
return coll
def collect_data():
now = datetime.now()
with open("wanikani_perf.json", "r") as f:
data = json.load(f)
n = worker()
data[str(now)] = n
with open("wanikani_perf.json", "w") as f:
json.dump(data, f)
if __name__ == '__main__':
collect_data()