Beautiful soup gets the SRC of the picture in the page

Get all img = soup.find_all('img')

The result is a lt; img> Array of tags, using get() to get <; img> The SRC

src=img[2].get('src')

 

Read More: