Not really a contribution, but a note. If you have a proxy on your Internet-facing environment you can add:
.
proxies = {
"http":"http://1.2.3.4:8080",
"https":"http://1.2.3.4:8080",
.
.
result = requests.get(url, allow_redirects=True, proxies=proxies, timeout=vsc.TIMEOUT)
.
Also, can't figure out how to use --check-specified-extensions. Check for extensions in /specified.json
Does this mean "only download the extensions in specified.json? That's what I'm after.
Not really a contribution, but a note. If you have a proxy on your Internet-facing environment you can add:
.
proxies = {
"http":"http://1.2.3.4:8080",
"https":"http://1.2.3.4:8080",
.
.
result = requests.get(url, allow_redirects=True, proxies=proxies, timeout=vsc.TIMEOUT)
.
Also, can't figure out how to use --check-specified-extensions. Check for extensions in /specified.json
Does this mean "only download the extensions in specified.json? That's what I'm after.