本帖最后由 mbz 于 2019-3-12 17:25 编辑
开机自动设置今日壁纸,壁纸来源于 必应 。
python 写的 ,反正就是你每天一开电脑或者运行下程序 你的壁纸自动换了。
我已打包成exe可执行文件,无毒。 我上传附件不到 咱论坛里面。 看代码吧
exe文件放在开机启动项里,
exe文件链接:
链接:https://pan.baidu.com/s/1gLuv1gULq2mJszOK74-Edw
提取码:44qi
复制这段内容后打开百度网盘手机App,操作更方便哦
下载完之后,(win10)把这个exe文件直接放在 C:\Users\你当前登录的用户名\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
就可以直接开机自启动了
[Python] 纯文本查看 复制代码 import requests
import json
import ctypes
r = requests.get('http://cn.bing.com/HPImageArchive.aspx?format=js&idx=0&n=1')
res = r.content.decode('utf-8')
print(type(res))
response = json.loads(res)
print(response)
print(response['images'][0]['url'])
url = response['images'][0]['url']
a = requests.get('http://cn.bing.com' + url)
path = r'C:\Users\14415\Pictures\Saved Pictures\img.png'
with open(path, 'wb') as f:
f.write(a.content)
ctypes.windll.user32.SystemParametersInfoW(20, 0, path, 0)
喜欢Python相关技术的可以 关注; www.ofus.ink (正在建设中)
www.manbanzhen.top |