使用Python下载flickr图像

时间:2018-08-30 17:23:30

标签: python web-scraping

from urllib.request import urlopen
from bs4 import BeautifulSoup
import random

google = "https://www.flickr.com/search/?text=Nike"
page = urlopen(google).read()
soup = BeautifulSoup(page, "html.parser")
img_tags = soup.find_all('img')

现在我被卡住了。

我正在尝试下载链接上的所有图像,有人可以帮我吗?

0 个答案:

没有答案