次のような HTML コードで画像を見つける必要があります。
...
<a href="/example/11/1">
<img src="http://example.net/example.jpg" alt="Example"/>
</a>
...
srcに画像をダウンロードします。
次のような HTML コードで画像を見つける必要があります。
...
<a href="/example/11/1">
<img src="http://example.net/example.jpg" alt="Example"/>
</a>
...
srcに画像をダウンロードします。
これはあなたにとって良い出発点になるはずです:
import urllib2
from BeautifulSoup import BeautifulSoup
page = urllib2.urlopen('http://yahoo.com').read()
soup = BeautifulSoup(page)
counter = 0
for img in soup.find_all('img'):
with open("image" + str(counter),'wb') as f:
f.write(urllib2.urlopen(img['src']).read())
counter += 1