|
|
|
|
|
by alexcasalboni
3303 days ago
|
|
You can download these files: - resources: https://littlealchemy.com/resources/base.560.json - names: https://littlealchemy.com/resources/en/names.560.json Then you can run this Python code to extract/merge into one single file: import json
with open('res.json', 'r') as f, open('names.json', 'r') as ff:
res = json.load(f)
names = json.load(ff)
for res_id, res_name in names.iteritems():
print("%s:" % res_name)
for id1, id2 in res[str(res_id)].get('parents', []):
print("\t %s + %s" % (names[str(id1)], names[str(id2)]))
Expected output: glacier:
ice + mountain
cart:
wheel + wood
nerd:
human + glasses
doctor:
human + hospital
wagon:
cart + horse
newspaper:
paper + paper
paper:
wood + pressure
|
|