1
0
Fork 0
mirror of https://github.com/kemayo/leech synced 2026-02-02 21:02:50 +01:00

Make downloading images the default behavior

This commit is contained in:
David Lynch 2024-11-23 16:19:43 -06:00
parent 400c5cc801
commit 6ecb1d8942

View file

@ -173,7 +173,7 @@ def download(urls, site_options, cache, verbose, normalize, output_dir, **other_
filename = ebook.generate_epub(
story, options,
image_options={
'image_fetch': options.get('image_fetch', False),
'image_fetch': options.get('image_fetch', True),
'image_format': options.get('image_format', 'jpeg'),
'compress_images': options.get('compress_images', False),
'max_image_size': options.get('max_image_size', 1_000_000),