Fundamentals 3 min read

Master Mouse and Keyboard Automation with Python’s pynput Library

Learn how to use the Python pynput library to control and monitor input devices, including detailed examples for mouse movement, click handling, and keyboard actions, as well as how to set up listeners for real‑time event tracking and stop them programmatically.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
Master Mouse and Keyboard Automation with Python’s pynput Library

Overview

The pynput library lets you control and monitor input devices such as mouse and keyboard.

Sub‑packages

Each device type has its own sub‑package:

pynput.mouse – classes for controlling and monitoring the mouse or touchpad.

pynput.keyboard – classes for controlling and monitoring the keyboard.

Both sub‑packages are imported directly from pynput.

Controlling the Mouse

Example code (shown in the image) demonstrates how to move the cursor, click, and scroll using pynput.mouse.Controller.

Monitoring Mouse Events

Use pynput.mouse.Listener to listen for mouse events. The listener runs in a separate thread; callbacks execute in that thread. Calling Listener.stop(), raising StopException, or returning False from a callback stops the listener.

Controlling the Keyboard

Example code (image) shows how to type keys with pynput.keyboard.Controller.

Monitoring Keyboard Events

Use pynput.keyboard.Listener to capture keyboard events. Like the mouse listener, it runs in its own thread. It can be stopped via Listener.stop(), a StopException, or returning False. The callback receives a Key instance; printable keys appear as KeyCode objects, while unknown keys return None.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

pynputkeyboard monitoringmouse controlinput automation
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.