9 lines
183 B
Python
Executable file
9 lines
183 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import json
|
|
import sys
|
|
from mako.template import Template
|
|
|
|
if __name__ == '__main__':
|
|
print(Template(filename=sys.argv[1]).render(**json.load(sys.stdin)))
|