mirror of
https://github.com/mustbeperfect/definitive-opensource.git
synced 2026-04-18 03:54:10 +02:00
Lowercased platform tags and uses name from id
This commit is contained in:
@@ -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")
|
||||
"""
|
||||
Reference in New Issue
Block a user