8 lines
382 B
Python
8 lines
382 B
Python
from linkedin_scraper import Person, actions
|
|
from selenium import webdriver
|
|
driver = webdriver.Chrome()
|
|
|
|
email = "contact@cipherbliss.com"
|
|
password = "*#2i2Nb3DU1OmyA283Mz&B5V20h@J3t40800d6ws89gea22155^6"
|
|
actions.login(driver, email, password) # if email and password isnt given, it'll prompt in terminal
|
|
person = Person("https://www.linkedin.com/in/maxence-cordiez", driver=driver) |