From 194bf3389af14f667c3a62aeaee1d2733dce949f Mon Sep 17 00:00:00 2001 From: carnal0wnage Date: Tue, 1 May 2018 19:39:50 -0400 Subject: [PATCH] add a line to show how to use a proxy --- weirdAAL.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/weirdAAL.py b/weirdAAL.py index 6138f24..19fb37c 100755 --- a/weirdAAL.py +++ b/weirdAAL.py @@ -16,6 +16,9 @@ import builtins os.environ['AWS_SHARED_CREDENTIALS_FILE'] = '.env' +# If you want to use a transparent + supports SSL proxy you can put it here +# os.environ['HTTPS_PROXY'] = 'https://127.0.0.1:8888' + sys.path.append("modules") for module in all_modules: exec("from %s import *" % module)