Skip to content

Instantly share code, notes, and snippets.

View noe2019's full-sized avatar

Noé Carème FOUOTSA MANFOUO noe2019

  • Canada
View GitHub Profile
@davidbauer
davidbauer / gist:11055010
Created April 18, 2014 17:22
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: