from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
driver = webdriver.Chrome()
driver.get("your site")
source = driver.find_element_by_xpath('your element to drag')
destination = driver.find_element_by_xpath('element to drag to')
ActionChains(driver).drag_and_drop(source= source, target= destination).perform()