for imgsrc in Soup.findAll('img', {'class': 'sizedProdImage'}):
if imgsrc:
imgsrc = imgsrc
else:
imgsrc = "ERROR"
patImgSrc = re.compile('src="(.*)".*/>')
findPatImgSrc = re.findall(patImgSrc, imgsrc)
print findPatImgSrc
'''
<img height="72" name="proimg" id="image" class="sizedProdImage" src="http://imagelocation" />
Esto es lo que estoy tratando de extraer de y estoy consiguiendo:Python 2.7 Hermosa sopa img src Extracto
findimgsrcPat = re.findall(imgsrcPat, imgsrc)
File "C:\Python27\lib\re.py", line 177, in findall
return _compile(pattern, flags).findall(string)
TypeError: expected string or buffer
'''
Aún consiguiendo el error: Rastreo (llamada más reciente pasado): archivo "C: \ Users \ BuyzDirect \ Desktop \ OverStock_Listing_Format_Tool.py", línea 50, en findPatImgSrc = patImgSrc .findall (imgsrc) TypeError: string o buffer esperado –
phales15