Skip to content

Instantly share code, notes, and snippets.

View IvanKuteynikov's full-sized avatar

IvanKuteynikov

View GitHub Profile
@IvanKuteynikov
IvanKuteynikov / gist:0bfe2f7467cb103e66c3c367ae6da0eb
Last active November 24, 2017 19:24 — forked from davidbauer/gist:11055010
Python script to download images from a CSV of image urls
#!/usr/bin/env python
# assuming a csv file with a name in column 0 and the image url in column 1
import urllib
filename = "images"
# open file to read
with open("{0}.csv".format(filename), 'r') as csvfile: