Note

인스타그램 크롤링 (2) - id, 프로필 사진 링크 본문

etc/Crawling

인스타그램 크롤링 (2) - id, 프로필 사진 링크

알 수 없는 사용자 2022. 7. 5. 21:13
728x90
# 인스타 id
overlays0 = "div._aacl._aaco._aacw._aacx._aad6._aade"
id = driver.find_element_by_css_selector(overlays0)
id = id.text
print(id)
        
# 인스타 profile 사진 링크
overlays1 = "a > img._aa8j"
profile = driver.find_element_by_css_selector(overlays1).get_attribute('src')    # 사진 선택
print(profile)
Comments