From 6f645ff2202abb354a3dfa43e186c9d6e1d15ce7 Mon Sep 17 00:00:00 2001 From: mjy0424 <65580735+mjy0424@users.noreply.github.com> Date: Tue, 28 Jul 2020 12:39:45 +0800 Subject: [PATCH] Update meizitu.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 大家好,我是新手,请多多指教,谢谢! --- 爬虫集合/meizitu.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/爬虫集合/meizitu.py b/爬虫集合/meizitu.py index 3ee4075..271c14e 100644 --- a/爬虫集合/meizitu.py +++ b/爬虫集合/meizitu.py @@ -13,9 +13,7 @@ def download_page(url): return r.text def get_pic_list(html): - ''' - 获取每个页面的套图列表,之后循环调用get_pic函数获取图片 - ''' + #获取每个页面的套图列表,之后循环调用get_pic函数获取图片 soup = BeautifulSoup(html, 'html.parser') pic_list = soup.find_all('li', class_='wp-item') for i in pic_list: @@ -24,11 +22,8 @@ def get_pic_list(html): text = a_tag.get_text() get_pic(link, text) - def get_pic(link, text): - ''' - 获取当前页面的图片,并保存 - ''' + #获取当前页面的图片,并保存 html = download_page(link) # 下载界面 soup = BeautifulSoup(html, 'html.parser') pic_list = soup.find('div', id="picture").find_all('img') # 找到界面所有图片