interception_py icon indicating copy to clipboard operation
interception_py copied to clipboard

A python port (not a wrapper) of interception dll

Results 5 interception_py issues
Sort by recently updated
recently updated
newest added

Hey! So, I needed to look into "real" inputs for some of my own projects. Eventually I learned about interception and found this python port for it, but honestly, I...

In the device class, you initialize the receive buffer as 12 or 24 signed bytes `c_byte` depending on the device type. Later in the `device_io_result` class, that data is passed...

It seems like some keys are lost

```python import newmodule as module handle = module.macro() while 1: if handle.getkeystate(86): handle.sleep(1) handle.lmb_down() handle.sleep(100) handle.lmb_up() handle.sleep(1000) ``` this code allows me to click when v is pressed? no, it...