First Release of SendKeys Module for Python
I've just released SendKeys module 0.3 for Python. SendKeys is a
Python module for Windows (R) which can be used to send one or more keystrokes
or keystroke combinations to the active window.
It's been a little while in coming, as I started it roughly 6 or 7 weeks ago,
but it's already been through a few iterations. First, I wrote the
low-level win32 code, using ctypes . Second, I wrote a Python
extension module using Pyrex , instead of ctypes . Lastly, I re-wrote
the extension module in c.