My code only returns an empty string, and I have no idea why.
import urllib2
def getImage(url):
    page = urllib2.urlopen(url)
    page = page.read() #Gives HTML to parse
    start = page.find('<a img=')
    end = page.find('>', start)
    img = page[start:end]
return img
It would only return the first image it finds, so it's not a very good image scraper; that said, my primary goal right now is just to be able to find an image. I'm unable to.
 
     
     `
        – bohney
                Oct 17 '12 at 15:03
`
        – bohney
                Oct 17 '12 at 15:03
     
     
     
     
     
    