Rebuild in modular fashion

This commit is contained in:
mez 2024-02-18 22:38:53 +00:00
parent cfd5b0ca34
commit 3b5cb360d5
28 changed files with 1238 additions and 694 deletions

23
generate.py Normal file
View file

@ -0,0 +1,23 @@
import sys
import backlog
import library
import sublibrary
try:
if sys.argv[1] == "local":
local = True
else:
local = False
except:
local = False
if __name__ == "__main__":
if local == True:
backlog.backlog(True)
library.library(True)
sublibrary.sublibrary(True)
else:
backlog.backlog()
library.library()
sublibrary.sublibrary()