X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/0604bdd5f693da9f1c78f9d9fa2276f0c7b6c17b..83cae63af4330912cdb2546c195af2919afd30ac:/src/librarian/command_line.py diff --git a/src/librarian/command_line.py b/src/librarian/command_line.py index 91196f1..2fc7cc1 100644 --- a/src/librarian/command_line.py +++ b/src/librarian/command_line.py @@ -9,7 +9,7 @@ def main(*args, **kwargs): parser.add_argument( 'builder', - choices=[b.identifier for b in builders], + choices=builders.keys(), help="Builder" ) parser.add_argument('input_file') @@ -22,7 +22,21 @@ def main(*args, **kwargs): help='specifies the directory for output' ) + # Specific + parser.add_argument( + '-b', '--base-url', metavar="URL", + help="Base for relative URLs in documents (like image sources)" + ) + + 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 @@ -38,6 +52,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())