mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-27 06:30:22 +00:00
Merge pull request #193 from sbrl/patch-1
wget: Remove unsupported compression option
This commit is contained in:
commit
e797a7a5f3
2 changed files with 3 additions and 1 deletions
|
@ -33,6 +33,7 @@ from config import (
|
||||||
WGET_USER_AGENT,
|
WGET_USER_AGENT,
|
||||||
CHECK_SSL_VALIDITY,
|
CHECK_SSL_VALIDITY,
|
||||||
COOKIES_FILE,
|
COOKIES_FILE,
|
||||||
|
WGET_AUTO_COMPRESSION
|
||||||
)
|
)
|
||||||
from util import (
|
from util import (
|
||||||
domain,
|
domain,
|
||||||
|
@ -224,10 +225,10 @@ def fetch_wget(link_dir, link, timeout=TIMEOUT):
|
||||||
'--backup-converted',
|
'--backup-converted',
|
||||||
'--span-hosts',
|
'--span-hosts',
|
||||||
'--no-parent',
|
'--no-parent',
|
||||||
'--compression=auto',
|
|
||||||
'-e', 'robots=off',
|
'-e', 'robots=off',
|
||||||
'--restrict-file-names=unix',
|
'--restrict-file-names=unix',
|
||||||
'--timeout={}'.format(timeout),
|
'--timeout={}'.format(timeout),
|
||||||
|
*(('--compression=auto',) if WGET_AUTO_COMPRESSION else ()),
|
||||||
*(() if FETCH_WARC else ('--timestamping',)),
|
*(() if FETCH_WARC else ('--timestamping',)),
|
||||||
*(('--warc-file={}'.format(warc_path),) if FETCH_WARC else ()),
|
*(('--warc-file={}'.format(warc_path),) if FETCH_WARC else ()),
|
||||||
*(('--page-requisites',) if FETCH_WGET_REQUISITES else ()),
|
*(('--page-requisites',) if FETCH_WGET_REQUISITES else ()),
|
||||||
|
|
|
@ -72,6 +72,7 @@ TEMPLATES_DIR = os.path.join(PYTHON_PATH, 'templates')
|
||||||
CHROME_SANDBOX = os.getenv('CHROME_SANDBOX', 'True').lower() == 'true'
|
CHROME_SANDBOX = os.getenv('CHROME_SANDBOX', 'True').lower() == 'true'
|
||||||
USE_CHROME = FETCH_PDF or FETCH_SCREENSHOT or FETCH_DOM
|
USE_CHROME = FETCH_PDF or FETCH_SCREENSHOT or FETCH_DOM
|
||||||
USE_WGET = FETCH_WGET or FETCH_WGET_REQUISITES or FETCH_WARC
|
USE_WGET = FETCH_WGET or FETCH_WGET_REQUISITES or FETCH_WARC
|
||||||
|
WGET_AUTO_COMPRESSION = USE_WGET and WGET_BINARY and (not run([WGET_BINARY, "--compression=auto", "--help"], stdout=DEVNULL).returncode)
|
||||||
|
|
||||||
########################### Environment & Dependencies #########################
|
########################### Environment & Dependencies #########################
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue