我想提取图片的宽度和高度使用Bueatiful。所有图片都有相同的代码格式:
<img src="http://somelink.com/somepic.jpg" width="200" height="100">
我可以很容易地提取链接
for pic in soup.find_all('img'):
print (pic['src'])
但
for pic in soup.find_all('img'):
print (pic['width'])
不是
<div style="margin:0px auto ;width:490;height:288px; overflow:hidden;"> // But here read and hide watmark on "height".
<img style="width:490px;height:318" src="******"/> // Original image src, and size.
</div>
</div>
我使用wordpress,所以我得