+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
+#
import argparse
import os.path
from .builders import builders
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'
)
+ # 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
))
document = WLDocument(filename=args.input_file)
- output = document.build(args.builder)
+
+ builder = builders[args.builder]
+ kwargs = {
+ "mp3": args.mp3,
+ }
+
+ output = document.build(builder, base_url=args.base_url, **kwargs)
with open(output_file_path, 'wb') as f:
f.write(output.get_bytes())