Skip to main content

Advanced Automation Utilities

Personal use automation utilities library. A powerful, native Python library for Windows automation, featuring Context Manager-based async chaining and zero dependence on heavy GUI automation libraries. It leverages native ctypes hooks for maximum speed, security, and lower overhead.


Purpose

This library is designed for scripts and applications that need:

  • Reliable, human-like mouse movements natively in Windows.
  • Low-level keyboard hooks and precise inputs.
  • Fast and accurate screen vision (OCR and image matching).
  • Asynchronous execution and method chaining.
  • Reliable timing, sound, and system-level operations.

Requirements

Dependencies

Standard library modules are used where possible; only external dependencies are listed:

  • mss (6.1.0 or higher)
  • numpy (1.21.0 or higher)
  • opencv-python (4.5.5 or higher)
  • psutil (5.8.0 or higher)
  • PyGetWindow (0.0.9 or higher)
  • pyperclip (1.8.2 or higher)
  • winrt-Windows.Foundation (3.0 or higher)
  • winrt-Windows.Foundation.Collections (3.0 or higher)
  • winrt-Windows.Graphics.Imaging (3.0 or higher)
  • winrt-Windows.Media.Ocr (3.0 or higher)
  • winrt-Windows.Storage.Streams (3.0 or higher)

Python version

Python (3.10 or higher)

Operating System

Any of the following:

  • Windows (10 or higher)
  • Linux (Any modern distribution capable of running Python 3.10)
  • MacOS (10.15 or higher)

Features

Physics (Human Simulation)

Both Mouse and Keyboard actions are governed by highly configurable dataclasses (MousePhysics and KeyboardPhysics) designed to mimic human behavior perfectly.

You can pass a custom physics object to their respective facades to alter their simulation parameters:

from advanced_automation_utilities.mouse import MousePhysics, Mouse
from advanced_automation_utilities.keyboard import KeyboardPhysics, Keyboard

# Configure human-like Bézier curve mouse movements
mouse_physics = MousePhysics(
    speed = 1500,
    minimum_speed = 0,
    maximum_speed = 0,
    speed_variation = 0.1,
    duration = 0,
    duration_variation = 0,
    base_duration = 0.1,
    base_duration_variation = 0.1,
    inconsistency = 0.25,
    target_radius = 25,
    readjustment_duration_ratio = 0.25,
    click_delay = 0.05,
    click_delay_variation = 0.1,
    click_duration = 0.05,
    click_duration_variation = 0.1,
    scroll_speed = 1000,
    scroll_speed_variation = 0.1,
    scroll_duration = 0,
    scroll_duration_variation = 0,
    scroll_step = 120,
    scroll_pause_variation = 0.1
)
mouse = Mouse(mouse_physics)

# Configure advanced typing simulation with errors and delayed realizations
keyboard_physics = KeyboardPhysics(
    press_delay = 0.15,
    press_delay_variation = 0.5,
    press_duration = 0.05,
    press_duration_variation = 0.1,
    hotkey_delay = 0.01,
    hotkey_delay_variation = 0.5,
    typing_error_chance = 0.025,
    typing_error_correction_delay = 0.25,
    typing_error_correction_delay_variation = 0.5,
    typing_error_delayed_realization_chance = 0.5,
    auto_repeat = True
)
keyboard = Keyboard(keyboard_physics)

Mouse Utilities (mouse)

Native pointer manipulation with Bézier-curve physics for human-like behavior:

  • MouseInfo().coordinates: Gets the current (X, Y) coordinates of the pointer.
    x, y = MouseInfo().coordinates
    
  • MouseInfo().x: Gets the current X coordinate of the pointer.
    x = MouseInfo().x
    
  • MouseInfo().y: Gets the current Y coordinate of the pointer.
    y = MouseInfo().y
    
  • MouseInfo().pixel_color(): Gets the RGB color of the pixel currently under the pointer.
    r, g, b = MouseInfo().pixel_color()
    
  • MouseInfo().on_screen: Checks if the pointer is currently within the bounds of any screen.
    is_visible = MouseInfo().on_screen
    
  • move(): Moves the pointer to the specified coordinates smoothly based on the configured physics.
    Mouse().move(x = 250, y = 500)
    
  • click(): Clicks the mouse at its current position or at specified coordinates.
    Mouse().click()
    Mouse().click(x = 100, y = 200) # Moves before clicking
    
  • double_click(): Performs a double click.
    Mouse().double_click()
    
  • right_click(): Performs a right click.
    Mouse().right_click()
    
  • middle_click(): Performs a middle click.
    Mouse().middle_click()
    
  • hold_click(): Holds down a mouse button.
    Mouse().hold_click()
    
  • release_click(): Releases a previously held mouse button.
    Mouse().release_click()
    
  • drag_and_drop(): Drags an item from start to end coordinates smoothly.
    Mouse().drag_and_drop(start_x = 100, start_y = 100, end_x = 500, end_y = 500)
    
  • scroll(): Scrolls the mouse wheel by the specified amount.
    Mouse().scroll(amount = -1000)
    

Keyboard Utilities (keyboard)

Low-level keyboard interaction and information retrieval:

  • KeyboardInfo().is_pressed(): Returns True if the specified key is currently physically pressed down.
    is_shift_down = KeyboardInfo().is_pressed("shift")
    
  • press_key(): Presses and immediately releases a single key.
    Keyboard().press_key("a")
    
  • hold_key(): Presses a key and holds it down.
    Keyboard().hold_key("shift")
    
  • release_key(): Releases a previously held key.
    Keyboard().release_key("shift")
    
  • hotkey(): Holds down a combination of keys and releases them in reverse order.
    Keyboard().hotkey("ctrl", "c")
    
  • block_key(): Blocks all physical input from a specific key.
    Keyboard().block_key("esc")
    
  • unblock_key(): Unblocks a previously blocked key.
    Keyboard().unblock_key("esc")
    
  • write(): Types a string character by character with advanced, human-like typing error simulations, delays, and physics.
    Keyboard().write("Hello, world!")
    

Screen Utilities (screen)

Advanced computer vision leveraging OpenCV and Windows OCR:

  • ScreenInfo().resolution: Gets the (width, height) resolution of the primary screen.
    width, height = ScreenInfo().resolution
    
  • ScreenInfo().width: Gets the width of the primary screen.
    width = ScreenInfo().width
    
  • ScreenInfo().height: Gets the height of the primary screen.
    height = ScreenInfo().height
    
  • ScreenInfo().pixel_color(): Gets the RGB color of a specific pixel coordinate.
    r, g, b = ScreenInfo().pixel_color(250, 500)
    
  • locate_image(): Searches for a template image on the screen and returns its central coordinates. Supports multi-monitor setups.
    x, y = Screen().locate_image("button.png", monitor_index = 0)
    
  • locate_text(): Uses OCR to find specific text on the screen and returns its central coordinates. Supports multi-monitor setups.
    x, y = Screen().locate_text("Submit", monitor_index = 0)
    
  • read_text(): Uses OCR to extract all readable text from the screen or a specific region. Supports multi-monitor setups.
    text = Screen().read_text(monitor_index = 0)
    

Timing Utilities (timing)

Delays, chronometers, and condition-based execution flow:

  • wait(): Pauses execution for an exact amount of seconds.
    Timing().wait(2.5)
    
  • wait_random(): Pauses execution for a random duration between two limits.
    Timing().wait_random(min_seconds = 1.0, max_seconds = 3.0)
    
  • wait_until(): Halts execution until a given function or lambda condition evaluates to True.
    # Waits until the shift key is pressed
    Timing().wait_until(lambda: KeyboardInfo().is_pressed("shift"))
    
  • start_stop_timer(): Standard chronometer to keep track of elapsed time across code segments.
    start = start_stop_timer()
    # ... perform actions ...
    end = start_stop_timer()
    elapsed_time = end - start
    
  • measure_time(): A decorator to automatically measure and print the execution time of any function.
    @measure_time
    def heavy_task(): pass
    

Sound Utilities (sound)

Audio playback and text-to-speech features:

  • play_beep_sound(): Plays a motherboard beep with a specific frequency and duration.
    Sound().play_beep_sound(frequency = 1000, duration = 0.5)
    
  • play_audio(): Plays an audio file from the file system.
    Sound().play_audio("alert.wav")
    
  • play_system_sound(): Plays a default Windows system sound.
    Sound().play_system_sound("warning")
    
  • speak(): Synthesizes text to speech using the default Windows voice.
    Sound().speak("Hello, world!")
    

System Utilities (system)

High-level operating system actions and process management:

  • SystemInfo().clipboard_text: Gets the current text content of the Windows clipboard.
    text = SystemInfo().clipboard_text
    
  • SystemInfo().active_window_title: Gets the title of the currently focused/active window.
    title = SystemInfo().active_window_title
    
  • SystemInfo().is_process_running(): Checks if a specific process is currently running.
    is_running = SystemInfo().is_process_running("notepad.exe")
    
  • set_clipboard_text(): Sets the text content of the Windows clipboard.
    System().set_clipboard_text("Text to paste later")
    
  • open_process(): Opens a process or file with optional arguments.
    System().open_process("notepad.exe")
    
  • kill_process(): Terminates an active process by its name.
    System().kill_process("notepad.exe", force = True)
    
  • focus_window(): Brings a specific window to the foreground by its title.
    System().focus_window("Untitled - Notepad")
    
  • resize_window(): Resizes a specific window to the specified dimensions by its title.
    System().resize_window("Untitled - Notepad", width = 800, height = 600)
    
  • move_window(): Moves a specific window to the specified coordinates by its title.
    System().move_window("Untitled - Notepad", x = 100, y = 100)
    
  • close_window(): Gently closes a specific window by its title.
    System().close_window("Untitled - Notepad")
    
  • enable_kill_switch(): Enables a global kill switch (Ctrl + Shift + Alt + K by default) to abort execution instantly.
    System().enable_kill_switch()
    
  • disable_kill_switch(): Disables the global kill switch.
    System().disable_kill_switch()
    
  • lock(): Locks the Windows session (Win+L).
    System().lock()
    
  • sign_out(): Signs out the current Windows user.
    System().sign_out()
    
  • sleep(): Puts the computer into sleep mode.
    System().sleep()
    
  • hibernate(): Puts the computer into hibernation mode.
    System().hibernate()
    
  • shutdown(): Turns off the computer.
    System().shutdown()
    
  • restart(): Restarts the computer.
    System().restart()
    

Installation

pip install advanced_automation_utilities

Update

pip install -U advanced_automation_utilities

Release files for advanced-automation-utilities 1.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for advanced-automation-utilities 1.0.0
File Size Uploaded
advanced_automation_utilities-1.0.0.tar.gz 30.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for advanced-automation-utilities 1.0.0
File Interpreter ABI Platform
advanced_automation_utilities-1.0.0-py3-none-any.whl Python 3 none any Details

Total release size: 77.6 kB

Release files / advanced_automation_utilities-1.0.0.tar.gz

Download URL advanced_automation_utilities-1.0.0.tar.gz
Size 30.3 kB
Tags Source
SHA-256 checksum
How to use checksums
b51fce7f23c8cb08e97872cc7da05d91e69fc80227b8124dbc3e23f48d381a32
BLAKE2b-256 checksum
How to use checksums
b81791dc8ccd3b0f5fb55a348836578f6081cb280c03de17f053a0339148f486
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.6

Release files / advanced_automation_utilities-1.0.0-py3-none-any.whl

Download URL advanced_automation_utilities-1.0.0-py3-none-any.whl
Size 47.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
1b691a91af04a2544716c902948c5633d1d20d951436de77823a7cddb877ce8a
BLAKE2b-256 checksum
How to use checksums
6de0c83d12d543f698fc799d311af9071097b8395074b39c607c4f536cb832a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.14.6

Release history Release notifications | RSS feed

1.1.8

2 release files

1.1.7

2 release files

1.1.6

2 release files

1.1.5

2 release files

1.1.4

2 release files

1.1.3

2 release files

1.1.2

2 release files

1.1.1

2 release files

1.1.0

2 release files

1.0.1

2 release files

This release

1.0.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page