https://github.com/spyoungtech/ahk-client
Client for ahk-server
https://github.com/spyoungtech/ahk-client
Last synced: 8 months ago
JSON representation
Client for ahk-server
- Host: GitHub
- URL: https://github.com/spyoungtech/ahk-client
- Owner: spyoungtech
- License: mit
- Created: 2024-05-22T03:37:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-08T21:54:25.000Z (almost 2 years ago)
- Last Synced: 2024-08-08T23:49:33.748Z (almost 2 years ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ahk-client
A client for [ahk-server](https://github.com/spyoungtech/ahk-server).
## Installation
```bash
pip install ahk-client
```
## Usage
Usage is nearly identical to the [ahk](https://github.com/spyoungtech/ahk-server) package, except you specify
a remote host (running `ahk-server`) to connect to instead of using a local installation of AutoHotkey.
```python
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.