├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── ahkunwrapped ├── __init__.py ├── autohotkey.py ├── lib │ └── AutoHotkey │ │ ├── AutoHotkey.exe │ │ └── NOTICE └── py.typed ├── example.ahk ├── example.py ├── example.spec ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── tests.ahk └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/README.md -------------------------------------------------------------------------------- /ahkunwrapped/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.2.1' 2 | from .autohotkey import * 3 | -------------------------------------------------------------------------------- /ahkunwrapped/autohotkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/ahkunwrapped/autohotkey.py -------------------------------------------------------------------------------- /ahkunwrapped/lib/AutoHotkey/AutoHotkey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/ahkunwrapped/lib/AutoHotkey/AutoHotkey.exe -------------------------------------------------------------------------------- /ahkunwrapped/lib/AutoHotkey/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/ahkunwrapped/lib/AutoHotkey/NOTICE -------------------------------------------------------------------------------- /ahkunwrapped/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/example.ahk -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/example.py -------------------------------------------------------------------------------- /example.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/example.spec -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pywin32>=227 2 | pytest~=7.0.1 3 | hypothesis~=6.31.6 4 | psutil~=5.9.3 5 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/tests.ahk -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeOptimist/ahkunwrapped/HEAD/tests.py --------------------------------------------------------------------------------