Skip to content

Instantly share code, notes, and snippets.

View shanirub's full-sized avatar

Shani Rub shanirub

View GitHub Profile
@shanirub
shanirub / yad.py
Created June 22, 2020 11:28 — forked from nposener/yad.py
yad_vashem_scrape
import requests
import shutil
image_path = 'http://namesfs.yadvashem.org/documentation4/16/12587775_03289775/'
path_to_save = '/Users/<USER_NAME>/Downloads/'
number_of_images = 51
for i in range(number_of_images):
image_name = str(i+1).zfill(5) + '.JPG'
resp = requests.get(image_path+image_name, stream=True)