我的代码只返回一个空字符串,我不知道为什么.
import urllib2
def getImage(url):
page = urllib2.urlopen(url)
page = page.read() #Gives HTML to parse
start = page.find('
它只返回它找到的第一个图像,所以它不是一个非常好的图像刮刀;那说,我现在的主要目标只是为了能够找到一个图像.我无能为力.
最佳答案
考虑使用BeautifulSoup来解析HTML:
from BeautifulSoup import BeautifulSoup
import urllib
url = 'http://www.google.com'
html = urllib.urlopen(url).read()
soup = BeautifulSoup(html)
for img in soup.findAll('img'):
print img['src']