34 from optparse
import OptionParser
35 parser = OptionParser(usage =
"usage: %prog [options] file1 [file2] ..." )
37 (opts, args) = parser.parse_args()
44 d = {
"file_list":
";".join(args)}
45 o_html = open(
'index.htm',
'w')
46 o_html.writelines(html_template%d)
49 print(
"Wrote index.htm file")