From 8ceda11d427bb3a4e0094ff2424fd284dd5feae1 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Wed, 9 Dec 2020 10:27:31 +0100 Subject: [PATCH] fix --- src/librarian/command_line.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/librarian/command_line.py b/src/librarian/command_line.py index 3c17daf..e7021bb 100644 --- a/src/librarian/command_line.py +++ b/src/librarian/command_line.py @@ -22,6 +22,13 @@ def main(*args, **kwargs): 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] @@ -39,6 +46,12 @@ def main(*args, **kwargs): )) 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()) -- 2.20.1