Skip to content

Instantly share code, notes, and snippets.

@stdsp
stdsp / composer_auto.py
Last active October 30, 2022 03:18
a script which saves a csv file of the 4 details on the https://app.composer.trade/follow page for all symphonies that you follow
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import pandas as pd
import datetime
driver = webdriver.Firefox(executable_path="geckodriver.exe")
driver.get("https://app.composer.trade/login")