posspack/.forgejo/scripts/update-wiki.py

23 lines
563 B
Python
Raw Normal View History

2024-07-27 14:23:23 +02:00
#!/usr/bin/env python
2024-07-27 14:41:57 +02:00
from pip._vendor import tomli
2024-07-27 14:28:16 +02:00
import glob
import os
2024-07-27 14:48:06 +02:00
mods = dict()
2024-07-27 14:31:45 +02:00
for mod in glob.glob("pack/mods/*.toml"):
2024-07-27 14:44:02 +02:00
with open(mod, "r") as f:
2024-07-27 14:41:57 +02:00
data = tomli.load(f)
2024-07-27 14:48:06 +02:00
url = ""
if data.update.modrinth:
url = "https://modrinth.com/mod/" + data.update.modrinth["mod-id"]
elif data.update.curseforge:
url = "https://legacy.curseforge.com/mod/" + data.update.modrinth["mod-id"]
mods[data.name] = url
with open("wiki/Modlist.md", "w") as f:
for mod in mods:
f.write("- [" + mod + "](" + mods[mod] + ")\r\n")