Lowercased platform tags and uses name from id

This commit is contained in:
Lucas
2025-04-13 16:24:01 -07:00
parent e4a57dea4b
commit 0a10aae819
3 changed files with 633 additions and 615 deletions

View File

@@ -46,18 +46,17 @@ def generate_contents(platform="all"):
with open("source/data/applications.json", "r", encoding="utf-8") as f:
app_data = json.load(f)
with open("source/data/tags.json", "r", encoding="utf-8") as f:
tags_data = json.load(f)
tags_data = json.load(f)
with open("source/data/platforms.json", "r", encoding="utf-8") as f:
platforms_data = json.load(f)
categories = cat_data.get("categories", [])
subcategories = cat_data.get("subcategories", [])
applications = app_data.get("applications", [])
parent_map = {cat["id"]: cat["name"] for cat in categories}
tag_map = {tag["id"]: tag["emoji"] for tag in tags_data["tags"]}
platform_map = {p["id"]: p["name"] for p in platforms_data["platforms"]}
subcat_by_parent = {}
for sub in subcategories:
@@ -126,7 +125,8 @@ def generate_contents(platform="all"):
if app.get("tags"):
tags = " " + " ".join(tag_map.get(tag, tag) for tag in app.get("tags", []))
app_platforms = " ".join(f"`{p}`" for p in app.get("platforms", []))
# app_platforms = " ".join(f"`{p}`" for p in app.get("platforms", []))
app_platforms = " ".join(f"`{platform_map.get(p, p)}`" for p in app.get("platforms", []))
stars = app.get("stars")
stars_formatted = f"**{format_stars(stars)}**" if stars is not None else ""
# repo_path = extract_repo_path(link)

View File

@@ -1,5 +1,22 @@
import json
# Load the JSON data from file
with open("source/data/applications.json", "r", encoding="utf-8") as file:
data = json.load(file)
# Convert all platform entries to lowercase
for app in data.get("applications", []):
if "platforms" in app and isinstance(app["platforms"], list):
app["platforms"] = [platform.lower() for platform in app["platforms"]]
# Write the modified data back to the file
with open("source/data/applications.json", "w", encoding="utf-8") as file:
json.dump(data, file, indent=4)
print("All platform entries have been converted to lowercase.")
"""
# Load the JSON file
with open("source/data/applications.json", "r", encoding="utf-8") as file:
data = json.load(file)
@@ -13,3 +30,4 @@ with open("source/data/applications.json", "w", encoding="utf-8") as file:
json.dump(data, file, indent=4, ensure_ascii=False)
print("Operation successful: applications.json updated")
"""