Write AutoHotkey scripts in Python
Project description
AutoHotkey.py
Write AutoHotkey scripts in Python.
Description
AutoHotkey.py provides a user-friendly API that lets the user write hotkeys and automation scripts in Python harnessing the power of AutoHotkey. It does so by embedding a Python DLL into the AutoHotkey process.
Quickstart
Ensure that you have installed Python 3.8 or later and AutoHotkey 1.1.28 or later.
Install the package to the Python user install directory. To do that, copy and paste the following into a PowerShell window:
py -m pip install --user autohotkey.py
Write the sample code into the playground.py
file:
@"
import sys
import ahkpy as ahk
ahk.message_box("Hello!")
@ahk.hotkey("F1")
def bye():
ahk.message_box("Bye!")
sys.exit()
"@ | Out-File -Encoding utf8 playground.py
Finally, run the sample code:
py -m ahkpy playground.py
It will show a "Hello!" message box. When the user presses F1, it will show a "Bye!" message box and exit.
You can check out and run other examples and read the documentation.
Minimum Supported Versions
- AutoHotkey v1.1.28 (U32 and U64 variants), AutoHotkey v2.0 is not supported #23
- Python 3.8.0
- Windows 10, version 1511
Credits
AutoHotkey.py was greatly inspired by Aurelain's Exo. Thanks to Lexikos for his monumental work on AutoHotkey. Thanks to the AutoHotkey site admins for maintaining the lively and welcoming forums.
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
Built Distribution
File details
Details for the file AutoHotkey.py-0.2.tar.gz
.
File metadata
- Download URL: AutoHotkey.py-0.2.tar.gz
- Upload date:
- Size: 108.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7189b7bc2cdf5908ed5f3c2917fe302e5d4e6990f9138364e0734bbce9059e98 |
|
MD5 | 1c92f33f86aa8d60f2150a62715a7116 |
|
BLAKE2b-256 | 77e0b19f5ef289edcef0aaf83c31045ed7f52bb6e00cc2d806d3491de43c4d1a |
File details
Details for the file AutoHotkey.py-0.2-py3-none-any.whl
.
File metadata
- Download URL: AutoHotkey.py-0.2-py3-none-any.whl
- Upload date:
- Size: 76.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04b34fc44c2e6e967366fd2487d856c87e51195e57f47647872391d0a7bdb754 |
|
MD5 | ffe660f906478e5ad17c69d94b3832c5 |
|
BLAKE2b-256 | f62cd6e505fb165b2acd2dda92a8091b476fa4b72150c57be249bb08b3e11e8a |