import json
from pathlib import Path
tax=json.loads(Path(r'E:/2026/plytixmage_dbs_data/kitchen_cabinets_taxonomy.json').read_text(encoding='utf-8'))
for code,c in sorted(tax['collections'].items()):
    name=c.get('display_name') or c.get('name')
    print(f'{code}: {name}')
