Python爬虫彼an桌面壁纸

爱必应

无聊写着玩。。
主要代码如下:if __name__ == ‘__main__’:
    poj = ‘F:\Biantu’
    if os.path.exists(poj):
        # print(‘目录已存在’)
        os.chdir(poj)
        pass
    else:
        print(‘目录不存在,新建目录{}’.format(poj))
        os.mkdir(poj)
        os.chdir(poj)
    t = 1
    for k in range(2,100):
        images = []
        html = ‘http://www.netbian.com/meinv/’+’index_’+str(k)+’.htm’
        req = requests.get(html)
        # a=etree.HTML(req.content)
        a = etree.parse(html, etree.HTMLParser())
        re = a.xpath(‘//*[@id="main"]/div[2]/ul/li/a/@href’)
        print(re)
        try:
            for j in re:
                l=reqq(‘http://www.netbian.com’+j)
                q=etree.HTML(l.content)
                ima=q.xpath(‘//*[@id="main"]/div[2]/div/p/a/img/@src’)[0]
                images.append(ima)
        except:
            print(‘第{}页error’.format(str(k)))
        print(‘正在下载:{}页’.format(str(k)))
        print(images)
        pool = Pool(4)
        yy = pool.map(downn, images)
        pool.close()
        pool.join()
如有违反版规的地方请版主删除

Python爬虫彼an桌面壁纸-图1

Python爬虫彼an桌面壁纸-图2

文件下载地址暂时未公布,需要的朋友请在下方留言,看到后会第一时间更新下载地址。

声明:本站所有资源均由网友分享,如有侵权内容,请在文章下方留言,本站会立即处理。

原文链接:,转发请注明来源!

发表评论