import datetime,os import log,skel def ownedgen(): if not os.path.isdir("build/owned"): os.mkdir("build/owned") if os.path.exists("build/owned/index.html"): os.remove("build/owned/index.html") thefile = "build/owned/index.html" skel.headerwrite(thefile,"owned") content = open(thefile,"a") cards = [] for event in log.log: for card in event["received"]: cards.append(card) cards = sorted(cards) content.write("

owned cards

\n

") for card in cards: deck = card[:-2] cardid = card[-2:] content.write("") content.write("

\n") content.close() skel.footerwrite(thefile) if __name__ == "__main__": ownedgen()