#!/usr/bin/env python from pip._vendor import tomli import glob import os def noop(): return mods = dict() for mod in glob.glob("pack/mods/*.toml"): with open(mod, "r") as f: data = tomli.load(f) moddata = dict() moddata["url"] = "" if "modrinth" in data["update"]: moddata["url"] = "https://modrinth.com/mod/" + data["update"]["modrinth"]["mod-id"] moddata["site"] = "Modrinth" elif "curseforge" in data["update"]: moddata["url"] = "https://legacy.curseforge.com/projects/" + str(data["update"]["curseforge"]["project-id"]) moddata["site"] = "CurseForge" moddata["side"] = data["side"] mods[data["name"]] = moddata with open("wiki/Modlist.md", "w") as f: f.write("
Name | ") f.write("Side | ") f.write("Link | ") f.write("|
---|---|---|---|
" + mod + " | ") f.write("" + mods[mod]["side"] + " | ") if mods[mod]["url"] != "": f.write("" + mods[mod]["site"] + " | ") else: f.write("N/A | ") f.write("\r\n