libregamingspaces/script.py

11 lines
222 B
Python

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))