From 6ecb1d894200c846137662848540948755f901da Mon Sep 17 00:00:00 2001 From: David Lynch Date: Sat, 23 Nov 2024 16:19:43 -0600 Subject: [PATCH] Make downloading images the default behavior --- leech.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leech.py b/leech.py index ce4cf9a..ee71ee4 100755 --- a/leech.py +++ b/leech.py @@ -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),