Skip to content
Snippets Groups Projects
Commit 637fc7b3 authored by Iskandar, Michelle P (UG - Computer Science)'s avatar Iskandar, Michelle P (UG - Computer Science) :ice_skate:
Browse files

Scraping tutorial

parents
No related branches found
No related tags found
No related merge requests found
Showing
with 121 additions and 0 deletions
.DS_Store 0 → 100644
File added
File added
File added
#Imports Packages
from selenium import webdriver
from selenium.webdriver.common.by import By
# This is the path I use
# DRIVER_PATH = '.../Desktop/Scraping/chromedriver 2'
# Put the path for your ChromeDriver here
DRIVER_PATH = './chromedriver'
wd = webdriver.Chrome(executable_path=DRIVER_PATH)
wd.get('https://google.com')
wd.find_element(By.XPATH, '//*[@id="L2AGLb"]/div').click()
search_box = wd.find_element_by_css_selector('input.gLFyf')
search_box.send_keys('Dogs')
wd.quit()
\ No newline at end of file
#Imports Packages
from dynamic_scraping import DRIVER_PATH
from selenium import webdriver
from selenium.webdriver.common.by import By
import PIL
import os
import time
import io
import requests
from PIL import Image
import hashlib
def fetch_image_urls(query:str, max_links_to_fetch:int, wd:webdriver, sleep_between_interactions:int=1):
def scroll_to_end(wd):
wd.execute_script("window.scrollTo(0, document.body.scrollHeight);")
time.sleep(sleep_between_interactions)
# build the google query
search_url = "https://www.google.com/search?safe=off&site=&tbm=isch&source=hp&q={q}&oq={q}&gs_l=img"
# load the page
wd.get(search_url.format(q=query))
image_urls = set()
image_count = 0
results_start = 0
while image_count < max_links_to_fetch:
scroll_to_end(wd)
# get all image thumbnail results
thumbnail_results = wd.find_elements_by_css_selector("img.Q4LuWd")
number_results = len(thumbnail_results)
print(f"Found: {number_results} search results. Extracting links from {results_start}:{number_results}")
for img in thumbnail_results[results_start:number_results]:
# try to click every thumbnail such that we can get the real image behind it
try:
img.click()
time.sleep(sleep_between_interactions)
except Exception:
continue
# extract image urls
actual_images = wd.find_elements_by_css_selector('img.n3VNCb')
for actual_image in actual_images:
if actual_image.get_attribute('src') and 'http' in actual_image.get_attribute('src'):
image_urls.add(actual_image.get_attribute('src'))
image_count = len(image_urls)
if len(image_urls) >= max_links_to_fetch:
print(f"Found: {len(image_urls)} image links, done!")
break
else:
print("Found:", len(image_urls), "image links, looking for more ...")
time.sleep(30)
return
load_more_button = wd.find_element_by_css_selector(".mye4qd")
if load_more_button:
wd.execute_script("document.querySelector('.mye4qd').click();")
# move the result startpoint further down
results_start = len(thumbnail_results)
return image_urls
def persist_image(folder_path:str,url:str):
try:
image_content = requests.get(url).content
except Exception as e:
print(f"ERROR - Could not download {url} - {e}")
try:
image_file = io.BytesIO(image_content)
image = Image.open(image_file).convert('RGB')
file_path = os.path.join(folder_path,hashlib.sha1(image_content).hexdigest()[:10] + '.jpg')
with open(file_path, 'wb') as f:
image.save(f, "JPEG", quality=85)
print(f"SUCCESS - saved {url} - as {file_path}")
except Exception as e:
print(f"ERROR - Could not save {url} - {e}")
def search_and_download(search_term:str,driver_path:str,target_path='./images',number_images=5):
target_folder = os.path.join(target_path,'_'.join(search_term.lower().split(' ')))
if not os.path.exists(target_folder):
os.makedirs(target_folder)
with webdriver.Chrome(executable_path=driver_path) as wd:
res = fetch_image_urls(search_term, number_images, wd=wd, sleep_between_interactions=0.5)
for elem in res:
persist_image(target_folder,elem)
search_and_download(
search_term="maitake mushroom",
driver_path='./chromedriver',
target_path='./images/maitake_mushroom',
number_images=50
)
\ No newline at end of file
File added
File added
images/maitake_mushroom/0ec145b0de.jpg

16.1 KiB

images/maitake_mushroom/17114a7f4e.jpg

50.6 KiB

images/maitake_mushroom/1c55edcd25.jpg

66.8 KiB

images/maitake_mushroom/1cb9d76b65.jpg

16.5 KiB

images/maitake_mushroom/231ea587f7.jpg

32.1 KiB

images/maitake_mushroom/27bafe0468.jpg

304 KiB

images/maitake_mushroom/29c102f38d.jpg

17.6 KiB

images/maitake_mushroom/363f18d05d.jpg

10.3 KiB

images/maitake_mushroom/382a65f933.jpg

31.7 KiB

images/maitake_mushroom/4241a262c6.jpg

299 KiB

images/maitake_mushroom/4c0300273b.jpg

73.1 KiB

images/maitake_mushroom/54b5f65072.jpg

16.4 KiB

images/maitake_mushroom/6591c04cca.jpg

13 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment