I have a handful of lists of dictionaries that look like this
list1 = [{a:b}, {c,d}, {e,f}]
list2 = [{aa:bb}, {cc,dd}, {ee,ff}]
The key is an id and the value is a URL. What I am attempting to do is loop though each list of dictionaries and grab the image at the URL(using request or urllib2) and write it to disk using the key as the file name plus some additional identifier. Maybe something like this.
5G4d3sweUI89_list1.jpg
I'm sure there is an easy solution for this but I'm just not thinking of it. I've jumped into the water before I learned how to swim.