摘要: python监听键盘事件 pip install pynput from pynput import keyboard def on_press(key): try: print('alphanumeric key {0} pressed'.format(key.char)) except Attr 阅读全文
posted @ 2020-03-07 19:24 newmiracle宇宙 阅读(1442) 评论(0) 推荐(0) 编辑
摘要: 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 = 阅读全文
posted @ 2020-03-07 16:40 newmiracle宇宙 阅读(308) 评论(0) 推荐(0) 编辑
摘要: python图片匹配方法 装opencv pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python 然后先写个显示图片 #!/usr/bin/python # -*- coding: UTF-8 -*- import 阅读全文
posted @ 2020-03-07 14:56 newmiracle宇宙 阅读(2231) 评论(0) 推荐(0) 编辑
摘要: python模拟鼠标拖动教程 #!/usr/bin/python # -*- coding: UTF-8 -*- from pymouse import PyMouse m = PyMouse() m.press(125,359) m.release(472,215) 那真的是很简单了 press 阅读全文
posted @ 2020-03-07 11:45 newmiracle宇宙 阅读(4490) 评论(0) 推荐(0) 编辑
摘要: python pycharm破解教程 1 https://mp.weixin.qq.com/s/zeq1sTmaPsKt7Bsok0Ldrg 搜索pycharm 即可破解 阅读全文
posted @ 2020-03-07 11:38 newmiracle宇宙 阅读(374) 评论(1) 推荐(0) 编辑