Python 벽지 다운로드 및 교체

준비
Python3 다운로드 설치
홈페이지에서 다운로드하면 됩니다. 적합한 버전을 선택하십시오:https://www.python.org/downloads/
환경 변수에 추가할 것을 선택하십시오.
pypiwin32 설치
벽지 설정 작업을 수행하려면 Windows 시스템의 API를 호출하고 pypiwin32를 설치해야 합니다. 컨트롤러는 다음과 같은 명령을 수행합니다.

pip install pypiwin32
작업 원리
두 개의 라인, 하나는 벽지를 다운로드하는 데 쓰이고, 하나는 벽지를 번갈아 바꾸는 데 쓰인다.모든 스레드 내부는 시간 처리를 하고 설정 파일에 설정된 대기 시간을 통해 시간 실행 기능을 실현합니다.
벽지 다운로드 스레드
간편한 파충류 도구, 목표 벽지 사이트를 조회하고 유효한 연결을 필터하여 하나씩 벽지를 다운로드합니다.
벽지 윤환 라인
벽지를 저장하는 디렉터리를 훑어보고 무작위로 벽지 경로를 선택하고pypiwin32 라이브러리로 벽지를 설정합니다.
부분 코드
스레드 생성 및 프로필 읽기

def main():
  #  
  conf = configparser.ConfigParser()
  #  
  conf.read("conf.ini")
  #  
  search = conf.get('config', 'search')
  max_page = conf.getint('config','max_page')
  loop = conf.getint('config','loop')
  download = conf.getint('config','download')
  
  #  
  t1 = Thread(target=loop_wallpaper,args=(loop,))
  t1.start()

  #  
  t2 = Thread(target=download_wallpaper,args=(max_page,search,download))
  t2.start()
그림 훑어보기 랜덤 설정 벽지

def searchImage():
  #  
  imagePath = os.path.abspath(os.curdir) + '\images'
  if not os.path.exists(imagePath):
    os.makedirs(imagePath)
  #  
  files = os.listdir(imagePath)
  #  
  if len(files) == 0:
    return
  index = random.randint(0,len(files)-1)
  for i in range(0,len(files)):
    path = os.path.join(imagePath,files[i])
    # if os.path.isfile(path):
    if i == index:
      if path.endswith(".jpg") or path.endswith(".bmp"):
        setWallPaper(path)
      else:
        print(" ")
벽지 설정

def setWallPaper(pic):
  # open register
  regKey = win32api.RegOpenKeyEx(win32con.HKEY_CURRENT_USER,"Control Panel\\Desktop",0,win32con.KEY_SET_VALUE)
  win32api.RegSetValueEx(regKey,"WallpaperStyle", 0, win32con.REG_SZ, "2")
  win32api.RegSetValueEx(regKey, "TileWallpaper", 0, win32con.REG_SZ, "0")
  # refresh screen
  win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER,pic, win32con.SPIF_SENDWININICHANGE)
벽지 조회 링크 필터링

def crawl(page,search):
  # 1\.  
  hub_url = 'https://wallhaven.cc/search?q=' + search + '&sorting=random&page=' + str(page)
  res = requests.get(hub_url)
  html = res.text

  # 2\.  
  ## 2.1   'href'
  links = re.findall(r'href=[\'"]?(.*?)[\'"\s]', html)
  print('find links:', len(links))
  news_links = []
  ## 2.2  
  for link in links:
    if not link.startswith('https://wallhaven.cc/w/'):
      continue
    news_links.append(link)
  print('find news links:', len(news_links))
  # 3\.  
  for link in news_links:
    html = requests.get(link).text
    fing_pic_url(link, html)
  print(' , :'+str(page));
사진 다운로드

def urllib_download(url):
  # 
  robot = './images/'
  file_name = url.split('/')[-1]
  path = robot + file_name
  if os.path.exists(path):
    print(' ')
  else:
    url=url.replace('\\','')
    print(url)
    r=requests.get(url,timeout=60)
    r.raise_for_status()
    r.encoding=r.apparent_encoding
    print(' ')
    if not os.path.exists(robot):
      os.makedirs(robot)
    with open(path,'wb') as f:
      f.write(r.content)
      f.close()
      print(path+'  ')
import 섹션

import re
import time
import requests
import os
import configparser
import random
import tldextract #pip install tldextract
import win32api, win32gui, win32con
from threading import Thread
전체 코드는 GitHub:https://github.com/codernice/wallpaper
지식
  • threading: 다중 스레드, 여기는 벽지 다운로드와 벽지 윤환 두 개의 스레드를 만드는 데 사용됩니다
  • requests: get으로 페이지를 가져오고 최종 벽지 링크를 가져옵니다
  • pypiwin32: 윈도우즈 시스템 API의 라이브러리에 접근합니다. 여기는 벽지를 설정하는 데 사용됩니다
  • configparser: 프로필 조작, 스레드 대기 시간과 다운로드 설정을 읽는 데 사용..
  • os: 파일 조작, 파일 저장, 파일 훑어보기, 경로 얻기 등..
  • 작가: 화려한 부농
    메일박스:[email protected]
    개인 블로그:https://www.codernice.top
    GitHub:https://github.com/codernice
    이상은Python이 벽지 다운로드와 교환을 실현하는 상세한 내용입니다. 더 많은python 벽지 다운로드와 교환에 관한 자료는 저희 다른 관련 글을 주목해 주십시오!

    좋은 웹페이지 즐겨찾기