摘要: 1 from pynput import mouse 2 import time 3 import threading 4 5 __DEBUG = False 6 7 def log(msg,debug=False): 8 if __DEBUG or debug: 9 print(msg) 10 11 class MouseM... 阅读全文
posted @ 2019-07-22 17:28 缘起花渊 阅读(835) 评论(0) 推荐(0) 编辑