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 지식
메일박스:[email protected]
개인 블로그:https://www.codernice.top
GitHub:https://github.com/codernice
이상은Python이 벽지 다운로드와 교환을 실현하는 상세한 내용입니다. 더 많은python 벽지 다운로드와 교환에 관한 자료는 저희 다른 관련 글을 주목해 주십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.