高清壁纸源码

发布于 2023-12-10  107 次阅读


from random import *
import requests
from bs4 import BeautifulSoup
import os 
import time
print("欢迎来到你亮哥的壁纸获取小程序")
a=input("请输入你需要多少张高清壁纸 24*:")
for n in range(1,1+int(a)):   
  url="https://wallhaven.cc/hot?page="+str(n)

  header = {
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75"
    }

  print(url)
  resp=requests.get(url,headers=header)
  resp.encoding='utf-8'
  main_page =BeautifulSoup(resp.text,"html.parser")
  alist =main_page.find("section",class_="thumb-listing-page").find_all("a")
  num=1
  l=str(n)+'.'+str(num)
  for a in alist:
   l=str(n)+'.'+str(num)
   href=a.get('href')
   if href =='#top'or href==None:
     continue
   else:
    print(href)
    child_page_resp = requests.get(href)
    child_page_resp.encoding ='utf-8'
    child_page_text =child_page_resp.text
    child_page =BeautifulSoup(child_page_text,"html.parser")
    img= child_page.find("div",class_="scrollbox").find_all("img")
    src=img[0].get('src')
    img_resp =requests.get(src)
    # print(src)
    filename=f"e:\wehaven壁纸"
    if not os.path.exists(filename):        #创建文件夹来保存图片
                os.mkdir(filename)
    with open(f"{filename}/{l}.jpg",'wb') as f:        #二进制文件的保存方法
      f.write(img_resp.content)
      print("over",l)
   num=num+1
   time.sleep(1)
print("allover")
为中华之崛起而读书
最后更新于 2023-12-10