pyxhook icon indicating copy to clipboard operation
pyxhook copied to clipboard

pyxhook is a library that allows you to listen for keyboard events on Linux

Results 9 pyxhook issues
Sort by recently updated
recently updated
newest added

I can't get this running. ive used pip to install the pyxhook module and tried using both python 2.7 and 3.6.5. Traceback (most recent call last): File "keylog.py", line 25,...

When I use pynput package, with Suppress=True, it is found that only key input inside the terminal is suppressed. But I want all key presses (in any app which has...

Not sure if you have anything to do with this script or are just providing a mirror, but it's actually been blocked by Microsoft, and Windows Defender will automatically remove...

Fixes #27 Changed lstrip to list indexing, lstrip removes all specified characters not just the first 3. Changed using modulo to get the ascii table from XK to return 0...

Using this example: https://github.com/JeffHoogland/pyxhook/blob/master/example_with_parameters.py It produces the error: Traceback (most recent call last): File "pykeylogger3.py", line 22, in hookman = pyxhook.HookManager(parameters=True) TypeError: __init__() got an unexpected keyword argument 'parameters' I'm...

Many ascii codes are incorrect. 'X', 'K' and '_' do have code 0 according to the code. Many other keys like arrow keys get an ascii code from 81 to...

https://github.com/JeffHoogland/pyxhook/blob/71658089df609ccbcf64247b86001f12177d6bab/pyxhook.py#L308 The above line will remove any instances of **X, K** and it is not able to detect **X, K** instead we can use **return name[3:]** @JeffHoogland @haim0n

Hello I would like to make a simple grab keys python3 script, that gets the keys and then checks the list if there is a key or not and then...

Hello, thanks for this nice module. I want to write a script that swallows/catches the user input so that it is not sent to the current window, while the HookManager...