Rebuild in modular fashion
This commit is contained in:
parent
cfd5b0ca34
commit
3b5cb360d5
28 changed files with 1238 additions and 694 deletions
23
generate.py
Normal file
23
generate.py
Normal 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()
|
Loading…
Add table
Add a link
Reference in a new issue