selenium

파이썬

[파이썬] Selenium과 Threading을 이용하여 구글 이미지 크롤링

import os import re import time import socket from urllib.request import urlretrieve from urllib.error import HTTPError, URLError from selenium import webdriver from selenium.common.exceptions import ( ElementClickInterceptedException, NoSuchElementException, ElementNotInteractableException, ) from PIL import Image from pygame import mixer from datetime import date from concurrent.futures import..

파이썬

Selenium을 이용하여 구글 이미지 크롤링 (Python)

import os import time import socket from urllib.request import urlretrieve from urllib.error import HTTPError, URLError from selenium import webdriver from selenium.common.exceptions import ElementClickInterceptedException, NoSuchElementException, \ ElementNotInteractableException from PIL import Image from pygame import mixer 필요한 모듈 import def scroll_down(): scroll_count = 0 print("ㅡ 스크롤 다운 시작 ..

IntegerString
'selenium' 태그의 글 목록