libregamingspaces/script.py

11 lines
222 B
Python
Raw Normal View History

2022-01-16 20:14:03 +01:00
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))