start new:
tmux
start new with session name:
tmux new -s myname
#!/usr/local/bin/python3 | |
import boto3 | |
import time | |
logs = boto3.client('logs') | |
LOG_GROUP='TUTORIAL-DEV2' | |
LOG_STREAM='stream1' |
from selenium import webdriver | |
profile = webdriver.FirefoxProfile() | |
# Set proxy settings to manual | |
profile.set_preference('network.proxy.type', 1) | |
# Set proxy to Tor client on localhost | |
profile.set_preference('network.proxy.socks', '127.0.0.1') | |
profile.set_preference('network.proxy.socks_port', 9050) | |
# Disable all images from loading, speeds page loading | |
# http://kb.mozillazine.org/Permissions.default.image |