ahk-client

A Python client for connecting to an ahk server


Keywords
ahk, autohotkey, windows, mouse, keyboard, automation, pyautogui, server, remote
License
MIT
Install
pip install ahk-client==0.0.1

Documentation

ahk-client

A client for ahk-server.

Installation

pip install ahk-client

Usage

Usage is nearly identical to the ahk package, except you specify a remote host (running ahk-server) to connect to instead of using a local installation of AutoHotkey.

from ahk_client import AHKClient

ahk = AHKClient('http://127.0.0.1:8000')

print(ahk.get_mouse_position())

Status

This project (and its server counterpart) is usable, but in very early stages of development. Notably, it does not currently include any authentication mechanisms for securing connection with the remote server, so use with caution.