from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = webdriver.ChromeOptions()
options.add_argument("user-data-dir=C:Path") #Path to your chrome profile
w = webdriver.Chrome(executable_path="C:Userschromedriver.exe", chrome_options=options)