web-dev-qa-db-ja.com

Pythonでマウスを制御する

Pythonでマウスカーソルをどのように制御しますか?つまり、Windowsの下で特定の位置に移動してクリックしますか?

179
Sasha

pywin32 (私の場合、pywin32-214.win32-py2.6.exe)をインストールした後、WinXPでテスト済み、Python 2.6(3.xもテスト済み):

import win32api, win32con
def click(x,y):
    win32api.SetCursorPos((x,y))
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,x,y,0,0)
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,x,y,0,0)
click(10,10)
301
Jeffrey Kemp

PyAutoGUI モジュールで試してください。マルチプラットフォームです。

pip install pyautogui

など:

import pyautogui
pyautogui.click(100, 100)

他の機能もあります。

import pyautogui
pyautogui.moveTo(100, 150)
pyautogui.moveRel(0, 10)  # move mouse 10 pixels down
pyautogui.dragTo(100, 150)
pyautogui.dragRel(0, 10)  # drag mouse 10 pixels down

これは、すべてのwin32conを使用するよりもはるかに簡単です。

99
Al Sweigart

win32apiまたはctypesモジュールを使用して、Win32 APIを使用してマウスまたはGUIを制御できます。

Win32apiを使用してマウスを制御する楽しい例を次に示します。

import win32api
import time
import math

for i in range(500):
    x = int(500+math.sin(math.pi*i/100)*500)
    y = int(500+math.cos(i)*100)
    win32api.SetCursorPos((x,y))
    time.sleep(.01)

Ctypesを使用したクリック:

import ctypes

# see http://msdn.Microsoft.com/en-us/library/ms646260(VS.85).aspx for details
ctypes.windll.user32.SetCursorPos(100, 20)
ctypes.windll.user32.mouse_event(2, 0, 0, 0,0) # left down
ctypes.windll.user32.mouse_event(4, 0, 0, 0,0) # left up
72
Anurag Uniyal

クロスプラットフォームのPyMouseをご覧ください: https://github.com/pepijndevos/PyMouse/

21
Fabio Varesano

別のオプションは、クロスプラットフォーム AutoPyパッケージ を使用することです。このパッケージには、マウスを移動するための2つの異なるオプションがあります。

このコードスニペットは、カーソルを即座に位置(200,200)に移動します。

import autopy
autopy.mouse.move(200,200)

代わりに、カーソルを画面上で特定の場所に視覚的に移動させたい場合は、smooth_moveコマンドを使用できます。

import autopy
autopy.mouse.smooth_move(200,200)
20
Gwen

Linux

from Xlib import X, display
d = display.Display()
s = d.screen()
root = s.root
root.warp_pointer(300,300)
d.sync()

ソース: 5行のコードでPythonマウスを移動(Linuxのみ)

14
Simon

clicks ライブラリを使用して、Windows 7でctypes回クリックするたびに左クリックするクイックでダーティな関数。ダウンロードは必要ありません。

import ctypes

SetCursorPos = ctypes.windll.user32.SetCursorPos
mouse_event = ctypes.windll.user32.mouse_event

def left_click(x, y, clicks=1):
  SetCursorPos(x, y)
  for i in xrange(clicks):
   mouse_event(2, 0, 0, 0, 0)
   mouse_event(4, 0, 0, 0, 0)

left_click(200, 200) #left clicks at 200, 200 on your screen. Was able to send 10k clicks instantly.
7
TankorSmash

Pynput は、WindowsとMacの両方で私が見つけた最良のソリューションです。プログラムが非常に簡単で、非常にうまく機能します。

例えば、

from pynput.mouse import Button, Controller

mouse = Controller()

# Read pointer position
print('The current pointer position is {0}'.format(
    mouse.position))

# Set pointer position
mouse.position = (10, 20)
print('Now we have moved it to {0}'.format(
    mouse.position))

# Move pointer relative to current position
mouse.move(5, -5)

# Press and release
mouse.press(Button.left)
mouse.release(Button.left)

# Double click; this is different from pressing and releasing
# twice on Mac OSX
mouse.click(Button.left, 2)

# Scroll two steps down
mouse.scroll(0, 2)
7
Pro Q