每次打开电脑,我总是要看一下自己的电脑音量是否关闭了,自从上次引发了尴尬以来,就在逐渐培养自己这个习惯——个鬼
都是学了编程的人了,肯定要用程序来完成这种固定操作啦𓀥𓀤𓀠𓀁
[Python] 纯文本查看 复制代码 import pyautogui as ag
import time
time.sleep(0.5)
find1=ag.locateCenterOnScreen('D:/Users/mzy/Documents/个人文档/py/auto/自动关闭音量/1.png',region=(1400,1030,500,60))
find2=ag.locateCenterOnScreen('D:/Users/mzy/Documents/个人文档/py/auto/自动关闭音量/2.png',region=(1400,1030,500,60))
find3=ag.locateCenterOnScreen('D:/Users/mzy/Documents/个人文档/py/auto/自动关闭音量/3.png',region=(1400,1030,500,60))
time.sleep(0.5)
if find1!=None:
print(find1)
ag.click(find1)
time.sleep(0.3)
ag.press('tab')
ag.press('space')
ag.press('esc')
elif find2!=None:
print(find2)
ag.click(find2)
time.sleep(0.3)
ag.press('tab')
ag.press('space')
ag.press('esc')
elif find3!=None:
print(find3)
ag.click(find3)
time.sleep(0.3)
ag.press('tab')
ag.press('space')
ag.press('esc')
else:
print('None')
python版本 3.8
pyautogui版本 0.9.50
编译器 pycharm
但这样的程序明显是没有意义的
本来我只要开机看一眼有没有关,点两下就行了,结果现在反而更麻烦了
我需要这个程序开机自启
两种方法
1.制作启动程序
[Asm] 纯文本查看 复制代码 start "" "C:\down_voice.exe" & ping localhost -n 5
复制到txt 再改为bat
2. 用PyInstaller直接生成exe程序,再将快捷方式放入C:\Users\mzy\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 就可以很简单的实现开机自启啦
ps:
接下来呢,我想对中英文切换下手,实现不同软件下自动切换输入法语言,有人知道python有什么库能识别当前窗口进程的吗?(^_−)☆如果能告诉我就非常感谢了
|