Jeremy Singer-Vine

Results 262 comments of Jeremy Singer-Vine

Since `waybackpack` relies on the `requests` module for fetching archived pages, I believe [setting the `HTTP{S}_PROXY` environment variables](https://requests.readthedocs.io/en/latest/user/advanced/) should work here, without any need for modifying the code: ... but...

If I'm understanding your concern correctly, you can also set environment variables on a process-level, e.g.: ```sh HTTPS_PROXY="https://example.com" waybackpack [...] ``` ... which would set the environment variable _just_ for...