Added stats updator functionality w. GH actions

This commit is contained in:
Lucas
2025-04-06 11:26:20 -07:00
parent abc726b3a0
commit 2597c3bfd9
6 changed files with 1819 additions and 506 deletions

View File

@@ -6,11 +6,12 @@ with open("source/data/applications.json", "r", encoding="utf-8") as file:
# Add "flags" and "stars" properties to each application
for app in data.get("applications", []):
app["stars"] = ""
app["flags"] = ""
app["last_commit"] = ""
app["language"] = ""
app["license"] = ""
# Save the updated JSON back to the file
with open("source/data/applications.json", "w", encoding="utf-8") as file:
json.dump(data, file, indent=4, ensure_ascii=False)
print("Updated applications.json successfully!")
print("Operation successful: applications.json updated")