当前位置: 欣欣网 > 码农

Python:超清壁纸搜索|下载工具(仅供学习)

2024-06-03码农

大家好!今天给你们带来了Python超清壁纸搜索和下载工具,可以设置关键词和页数,仅供学习!

安装:

pip install mechanicalsoup

实例:

#By Python_Fucker On 2024/6/3import mechanicalsoupimport osdefdownload_image(url, folder): browser = mechanicalsoup.StatefulBrowser() response = browser.session.get(url)with open(os.path.join(folder, os.path.basename(url)), 'wb') as f: f.write(response.content)defget_image_links(keyword, page_num, down): browser = mechanicalsoup.StatefulBrowser() base_url = 'https://aspx.sc.chinaz.com/query.aspx?keyword={}&issale=& classID=11&navindex=0&page={}'for page in range(1, page_num+1): url = base_url.format(keyword, page) browser.open(url)for link in browser.get_current_page().find_all('div', {' class': "heis"}): pic_href = link.find('a')['href'] full_url = browser.absolute_url(pic_href) result = browser.open(full_url) src = result.soup.select(".com-right-down-btn a")for s in src: img_url = s["href"] print(img_url)if down:ifnot os.path.exists(keyword): os.mkdir(keyword) download_image(img_url, keyword)#搜索工具get_image_links("美女", 2, True)#关键词,页数,是否下载

输出:

https://downsc.chinaz.net/Files/DownLoad/pic9/201606/apic21587.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/202205/apic40738.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201606/apic21202.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/202007/apic26660.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201712/zzpic9212.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201708/zzpic5780.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201608/apic22320.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201410/apic6988.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201607/apic21844.rarhttps://downsc.chinaz.net/Files/DownLoad/pic8/xpic2583.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201612/apic24766.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201802/zzpic10081.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201607/apic21640.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201505/apic12031.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201505/apic11501.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201609/fpic7065.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201411/apic7597.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201701/zzpic572.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201608/apic22477.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201602/apic18625.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201601/apic18539.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201907/hpic1177.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201406/apic4219.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201506/apic12535.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201702/zzpic1175.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201605/fpic959.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201604/apic20333.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201711/zzpic7990.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/202011/apic29051.rarhttps://downsc.chinaz.net/Files/DownLoad/pic9/201612/apic25105.rar