This repository has been archived on 2019-12-12. You can view files and clone it, but cannot push or open issues/pull-requests.
tildetown-scripts/tildetown/mustache.py

13 lines
237 B
Python

from json import loads
from sys import argv,stdin
from pystache import render
from tildetown.util import slurp
if __name__ == '__main__':
template = slurp(argv[1])
data = loads(stdin.read())
print(render(template, data))