A cross-platform automation module for pressing, releasing, clicking keys and mouse, checking pixels, hotkeys, and more.
Project description
pressing
A Python automation module for simulating keyboard and pixel actions.
import pressing
from pressing import (
press,
release,
click,
run_macro,
pressed,
pixel,
pixel_color,
pixel_is,
write,
hotkey,
wait,
wait_key,
hold,
mouse_click,
mouse_move,
creator,
)
# Change typing speed
pressing.typewait = 0.05
# Display creator info
creator()
# Keyboard actions
press("shift")
click("a")
release("shift")
write("hello world")
hotkey("ctrl", "s")
# Run a macro list
run_macro(["a", "b", "c", "enter"])
# Wait for a key press
wait_key("space")
# Pixel checks
color = pixel_color(500, 300)
print("Pixel color:", color)
if pixel_is(500, 300, (255, 0, 0)):
print("That pixel is red.")
# Pixel + RGB tuple check
if pixel((500, 300), (255, 255, 255)):
print("Match!")
# Mouse actions
mouse_move(300, 400)
mouse_click("left")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pressing-0.2.3.tar.gz
(3.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pressing-0.2.3.tar.gz.
File metadata
- Download URL: pressing-0.2.3.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a086e898259e843e8324975fb42821bf4524531ab359176637d9efb98dc7201
|
|
| MD5 |
d4f6094bbf5750753ed2ed2dd6bfa61b
|
|
| BLAKE2b-256 |
ced9dcd2ecdcda2c8b619e9f4eb8e15c0406dc89edcf058e3421255474e04fdb
|
File details
Details for the file pressing-0.2.3-py3-none-any.whl.
File metadata
- Download URL: pressing-0.2.3-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c684e4cd9aea01e512acd4d9d7f7d7a29664f9ed74b6e4bc9314c28384972bc1
|
|
| MD5 |
25f2b7bf93bd1f725ccb91dd4f21219b
|
|
| BLAKE2b-256 |
9f764f9f838e84238ca8d18b56cc60401d215baa3208cf03dd1f674af5946cfe
|