摘要:
python监听键盘事件 pip install pynput from pynput import keyboard def on_press(key): try: print('alphanumeric key {0} pressed'.format(key.char)) except Attr 阅读全文
摘要:
python截图方法 import pyautogui import cv2 import numpy as np img = pyautogui.screenshot(region=[0,0,300,300]) # x,y,w,h img.save('screenshot.png') #img = 阅读全文
摘要:
python图片匹配方法 装opencv pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python 然后先写个显示图片 #!/usr/bin/python # -*- coding: UTF-8 -*- import 阅读全文
摘要:
python模拟鼠标拖动教程 #!/usr/bin/python # -*- coding: UTF-8 -*- from pymouse import PyMouse m = PyMouse() m.press(125,359) m.release(472,215) 那真的是很简单了 press 阅读全文
摘要:
python pycharm破解教程 1 https://mp.weixin.qq.com/s/zeq1sTmaPsKt7Bsok0Ldrg 搜索pycharm 即可破解 阅读全文