diff --git a/script.py b/script.py new file mode 100644 index 0000000..f1be722 --- /dev/null +++ b/script.py @@ -0,0 +1,10 @@ +from mako.template import Template +import json +import itertools +import argparse + +appTemplate = Template(filename='./spaces.html') +f = open('libregamingspaces.json') +spaces=json.load(f) + +print(appTemplate.render(s=spaces))