python实现自动换桌面壁纸恶搞程序【带源码】--------- 1. 效果和源码

这是一个使用Python编写的程序,每5秒自动更换桌面壁纸,即使手动更改也无法停止,用于恶搞。程序通过调用Windows底层API,并使用pyinstaller打包成后台exe执行。
摘要由CSDN通过智能技术生成

效果

本案例程序运行后无弹窗,每5秒自动更换一次壁纸,手动换了也不管用,达到整人效果O(∩_∩)O,效果如图
请添加图片描述

实现

本案例使用python编写,调用win底层相关的api,最终使用pyinstaller打包成为exe,以后台进程的形式强行更换壁纸

源码

import requests
import ctypes
from urllib.request import urlretrieve
import threading
def fun_timer():
    try:
        IMAGE_URL = '网络图片地址'
        LOCAL_URL = './02.jpg'
        r = requests.get(IMAGE_URL)
        with open(LOCAL_URL, 'wb') as f:
            f.write(r.content)
        ctypes.windll.user32.SystemParametersInfoW(20, 0, os.getcwd()+'/02.jpg', 0)
        timer = threading.Timer(5, fun_timer)
        timer.start()
    except Exception as e :
        timer = threading.Timer(5, fun_timer)
        timer.start()
timer = threading.Timer(5, fun_timer)
timer.start()

源码解析

import requests
import ctypes
from urllib.request import urlretrieve
import threading
def fun_timer():
    try:
    	# 网络图片的路径
        IMAGE_URL = '网络图片地址'
        # 把网络图片下载下来的存放路径
        LOCAL_URL = './02.jpg'
        # 通过get请求下载网络图片为02.jpg
        r = requests.get(IMAGE_URL)
        with open(LOCAL_URL, 'wb') as f:
            f.write(r.content)
        # 设置Windows壁纸
        ctypes.windll.user32.SystemParametersInfoW(20, 0, os.getcwd()+'/02.jpg', 0)
        # 每5秒循环执行一次
        timer = threading.Timer(5, fun_timer)
        timer.start()
    # 如果遇到异常就重新尝试(例如断网、文件io冲突、壁纸更换冲突等)
    except Exception as e :
        timer = threading.Timer(5, fun_timer)
        timer.start()
timer = threading.Timer(5, fun_timer)
# 开始执行程序
timer.start()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

FarryNiu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值