우노
[Python] Google 이미지 크롤링 방법 본문
진행 순서
- Google 이미지 크롤링 라이브러리 설치 (수정 버전)
- 이미지 크롤링 코드 작성 및 실행
1. Google 이미지 크롤링 라이브러리 설치 (수정 버전)
기존 google_images_download 라이브러리 사용 시 에러가 발생해, 아래 Link 를 참고
설치 코드
pip install git+https://github.com/Joeclinton1/google-images-download.git
2. 이미지 크롤링 코드 작성 및 실행
Google Images Download Reference 의 Code Samples 참고
이미지 크롤링 코드 작성 (crawling.py)
#importing the library from google_images_download import google_images_download #class instantiation response = google_images_download.googleimagesdownload() # keywords : 원하는 검색 키워드 # limit : 원하는 다운로드 사진 개수 (수정 버전에서는 최대 100개까지 가능) # format : 다운로드 확장자 지정 arguments = {"keywords":"워너원 강다니엘, 엑소 백현, 박보검, 송중기, 워너원 황민현, 엑소 시우민, 강동원, 이종석, 이준기, 마동석, 조진웅, 조세호, 안재홍, 윤두준, 이민기, 김우빈, 육성재, 공유, BTS 정국, 아이콘 바비, 워너원 박지훈, 엑소 수호", "limit":50, "print_urls":True, "format":"jpg" } #passing the arguments to the function paths = response.download(arguments) #printing absolute paths of the downloaded images print(paths)
이미지 크롤링 코드 실행
python crawling.py
'Language > Python' 카테고리의 다른 글
[Python] Pandas DataFrame 행, 열 요소 접근 (0) | 2021.10.09 |
---|---|
[Python] Pandas DataFrame 중복 행, 열 제거 (2) | 2021.10.09 |
[Python] 시간 측정 (0) | 2021.08.19 |
[Python] pip 개념 및 설치 (0) | 2021.06.25 |
[Matplotlib] figure, subplot 차이 (0) | 2021.06.23 |
Comments