from selenium import webdriver as wd
PROXY = "11.456.448.110:8080"
chrome_options = wd.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % PROXY)
chrome = wd.Chrome(chrome_options=chrome_options)
chrome.get("http://whatismyipaddress.com")