We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cf386c8 + efdb626 commit c6a64d1Copy full SHA for c6a64d1
app.py
@@ -74,12 +74,15 @@ def generate_indexes(output_path):
74
index = [
75
{
76
"license_key": key,
77
+ "spdx_license_key": license.spdx_license_key,
78
+ "other_spdx_license_keys": license.other_spdx_license_keys,
79
+ "is_exception": license.is_exception,
80
"json": f"{key}.json",
81
"yml": f"{key}.yml",
82
"html": f"{key}.html",
83
"text": f"{key}.LICENSE",
84
}
- for key in licenses.keys()
85
+ for key, license in licenses.items()
86
]
87
write_file(output_path, "index.json", json.dumps(index))
88
write_file(output_path, "index.yml", saneyaml.dump(index))
0 commit comments