add a line to show how to use a proxy

This commit is contained in:
carnal0wnage
2018-05-01 19:39:50 -04:00
parent fa6400ee41
commit 194bf3389a

View File

@@ -16,6 +16,9 @@ import builtins
os.environ['AWS_SHARED_CREDENTIALS_FILE'] = '.env' 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") sys.path.append("modules")
for module in all_modules: for module in all_modules:
exec("from %s import *" % module) exec("from %s import *" % module)