Hello.
This is my code:
from bs4 import BeautifulSoup
import urllib2
url = urllib2.urlopen('http://www.website_address.com')
soup = BeautifulSoup(url)
images = soup.find_all('img')
Now how can I get the "src" of img tags?
Are you able to help answer this sponsored question?
Questions asked by members who have earned a lot of community kudos are featured in order to give back and encourage quality replies.