首頁 > 軟體

趣味Python實戰練習之自動更換桌面桌布指令碼附原始碼

2021-10-15 13:01:17

前言

發現一個不錯的桌布網站,裡面都是超高清的圖片,而且還是免費為的。

所以,我打算把這些桌布都爬取下來,然後在做一個自動跟換桌面桌布的指令碼,這樣基本上你一年都可以每天都有不重複桌面了

目標地址

先來看看我們這次的受害者:https://wallhaven.cc/

【付費VIP完整版】只要看了就能學會的教學,80集Python基礎入門視訊教學

點這裡即可免費線上觀看

先是爬蟲程式碼

匯入資料

import requests
import re

請求資料

for page in range(1, 126):
    url = 'https://wallhaven.cc/toplist?page={}'.format(page)
    headers = {
        'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36'
    }
    response = requests.get(url=url, headers=headers)

解析資料

urls = re.findall('<a class="preview" href="(.*?)" rel="external nofollow" ', response.text)
for i in urls:
    response_2 = requests.get(url=i, headers=headers)
    img_url = re.findall('<img id="wallpaper" src="(.*?)"', response_2.text)[0]
    title = img_url.split('-')[-1]
    download(title, img_url)
    print(img_url)

儲存資料

def download(title, url):
    path = 'img\' + title
    response = requests.get(url=url)
    with open(path, mode='wb') as f:
        f.write(response.content)

執行程式碼,檢視結果

自動跟換桌面桌布程式碼

import win32api
import win32con
import win32gui
import os
import time


def Windows_img(paperPath):
    k=win32api.RegOpenKeyEx(win32con.HKEY_CURRENT_USER,"Control panel\Desktop",0,win32con.KEY_SET_VALUE)
    # 在登入檔中寫入屬性值
    win32api.RegSetValueEx(k,"wapaperStyle",0,win32con.REG_SZ,"2")  # 0 代表桌面居中 2 代表拉伸桌面
    win32api.RegSetValueEx(k,"Tilewallpaper",0,win32con.REG_SZ,"0")
    win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER,paperPath,win32con.SPIF_SENDWININICHANGE) # 重新整理桌面


def changeWallpaper():
    """資料夾/資料夾/圖片"""
    path=input('請輸入檔案路徑:')
    L2=os.listdir(path=path)  # 得到檔案路徑下的桌布資料夾,列表型別
    i=0
    print(L2)   # 桌布資料夾
    url_list = []
    for l2 in L2:
        detail_path = path + '\' + l2
        L3 = os.listdir(detail_path)    # 得到桌布資料夾路徑下的圖片,列表型別
        for l3 in L3:
            url_list.append(detail_path + '\' + l3)
    print(url_list)
    while True:
        Windows_img(url_list[i])
        print('{}'.format(url_list[i]))
        time.sleep(2)  # 設定桌布更換間隔,這裡為10秒,根據使用者自身需要自己設定秒數
        i += 1
        if i == len(url_list):  # 如果是最後一張圖片,則重新到第一張
            i = 0


def changeWallpaper_2():
    """資料夾/圖片"""
    path=input('請輸入檔案路徑:')
    L2=os.listdir(path=path)  # 得到檔案路徑下的圖片,列表型別
    i=0
    print(L2)
    while True:
        Windows_img(path+'{}'.format(L2[i]))
        print(path+'{}'.format(L2[i]))
        time.sleep(1000)  # 設定桌布更換間隔,這裡為10秒,根據使用者自身需要自己設定秒數
        i += 1
        if i==len(L2):  # 如果是最後一張圖片,則重新到第一張
            i=0

if __name__ == '__main__':
    changeWallpaper()

最後實現效果

到此這篇關於趣味Python實戰練習之自動更換桌面桌布指令碼附原始碼的文章就介紹到這了,更多相關Python 自動更換桌布內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com