parser.add_argument(
'builder',
- choices=[b.identifier for b in builders],
+ choices=builders.keys(),
help="Builder"
)
parser.add_argument('input_file')
help='specifies the directory for output'
)
+ parser.add_argument(
+ '--mp3',
+ metavar="FILE",
+ nargs="*",
+ help='specifies an MP3 file, if needed'
+ )
+
args = parser.parse_args()
+ builder = builders[args.builder]
if args.output_file:
output_file_path = args.output_file
))
document = WLDocument(filename=args.input_file)
- output = document.build(args.builder)
+
+ builder = builders[args.builder]
+ kwargs = {
+ "mp3": args.mp3,
+ }
+
+ output = document.build(builder, **kwargs)
with open(output_file_path, 'wb') as f:
f.write(output.get_bytes())