|
|
发表于 2020-2-5 23:15:27
|
显示全部楼层
本楼为最佳答案
 将 C:\Users\86139\AppData\Local\Programs\Python\Python37\lib\site-packages\pymouse\__init__.py 文件改成这样:
- # -*- coding: iso-8859-1 -*-
- # Copyright 2010 Pepijn de Vos
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """The goal of PyMouse is to have a cross-platform way to control the mouse.
- PyMouse should work on Windows, Mac and any Unix that has xlib.
- See http://github.com/pepijndevos/PyMouse for more information.
- """
- import sys
- from threading import Thread
- class PyMouseMeta(object):
- def press(self, x, y, button = 1):
- """Press the mouse on a givven x, y and button.
- Button is defined as 1 = left, 2 = right, 3 = middle."""
- raise NotImplementedError
- def release(self, x, y, button = 1):
- """Release the mouse on a givven x, y and button.
- Button is defined as 1 = left, 2 = right, 3 = middle."""
- raise NotImplementedError
- def click(self, x, y, button = 1):
- """Click the mouse on a givven x, y and button.
- Button is defined as 1 = left, 2 = right, 3 = middle."""
- self.press(x, y, button)
- self.release(x, y, button)
-
- def move(self, x, y):
- """Move the mouse to a givven x and y"""
- raise NotImplementedError
- def position(self):
- """Get the current mouse position in pixels.
- Returns a tuple of 2 integers"""
- raise NotImplementedError
- def screen_size(self):
- """Get the current screen size in pixels.
- Returns a tuple of 2 integers"""
- raise NotImplementedError
- class PyMouseEventMeta(Thread):
-
- deamon = True
- capture = False
- state = True
- def stop(self):
- self.state = False
- def click(self, x, y, button, press):
- """Subclass this method with your click event handler"""
- pass
- def move(self, x, y):
- """Subclass this method with your move event handler"""
- pass
- if sys.platform.startswith('java'):
- from .java_ import PyMouse
- elif sys.platform == 'darwin':
- from .mac import PyMouse, PyMouseEvent
- elif sys.platform == 'win32':
- from .windows import PyMouse, PyMouseEvent
- else:
- from .unix import PyMouse, PyMouseEvent
复制代码 |
|