-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathj2parse.py
executable file
·49 lines (38 loc) · 1.24 KB
/
j2parse.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
import os
import jinja2
import yaml
from optparse import OptionParser
def render(tpl_path, context):
path, filename = os.path.split(tpl_path)
return jinja2.Environment(
loader=jinja2.FileSystemLoader(path or './')
).get_template(filename).render(context)
usage = "usage: %prog [options] TEMPLATE"
parser = OptionParser(usage=usage)
parser.add_option("-f", "--file",
dest="file",
help="Load variables from yaml file",
metavar="FILE")
parser.add_option("-s", "--set",
action="append",
dest="environment",
help="Set variables for template",
metavar="\"VAR1=VALUE1\"")
(options, args) = parser.parse_args()
if len(args) != 1:
parser.error("Filename is missing")
tpl_file = args[0]
environment = {}
if options.file:
with open(options.file, 'r') as stream:
try:
environment = yaml.load(stream, Loader=yaml.FullLoader)
except yaml.YAMLError as exc:
print(exc)
if options.environment:
for e in options.environment:
fields = e.split('=')
environment[fields[0]] = "=".join(fields[1:])
result = render(tpl_file, environment)
print(result)