pyHook is a python wrapper for global input hooks in Windows. Specifically it wraps the Windows SetWindowsHookEx API function using low-level keyboard (WH_KEYBOARD_LL) and mouse (WH_MOUSE_LL) hooks.
Questions tagged [pyhook]
202 questions
-1
votes
1 answer
How to install python modules?
I am new at python programing language, I want to install .whl file with pip but it doesn`t happen... I am trying to download pyHook for 64-bit windows 7 for python 3.6 or 2.7.
Please help me!

Tony Markov
- 35
- 1
- 7
-1
votes
2 answers
Can someone help me installing pyHook?
I have python 3.5 and I can't install pyHook. I tried every method possible. pip, open the cmd directly from the folder, downloaded almost all the pyHook versions. Still can't install it.
I get this error :'
Could not find a version that satisfies…

Narcis Bulboaca
- 31
- 1
- 3
-1
votes
1 answer
How to rebuild a Python module/library
I'm trying to rebuild the pyhook libary as described in this answer here.
Basically, I need to change a few lines of the C code for the pyhook module.
The problem is I don't know how to access the C code or how to rebuild the libary.
I've heard of…

staad
- 796
- 8
- 20
-1
votes
1 answer
Use CSS in Django
I have a Django project structure like this
Project
app
media
static
style.css
templates
base.html
and in settings
PROJECT_ROOT = os.path.join(os.path.dirname(__file__), '..')
SITE_ROOT = PROJECT_ROOT
…

hln
- 1,071
- 4
- 21
- 37
-2
votes
1 answer
Tkinter bind does not call funtion
I am trying to change the text in a tkinter entry widget, to be the key combination entered by the user(example: ShiftL+ShiftR), the python program runs fine, but does not change entry, why and how can i fix it?
My GUI:
# Program by Fares Al Ghazy…

Fares Al Ghazy
- 55
- 2
- 9
-2
votes
1 answer
Split a string into text and integer
I have a string of the form
" This year is 2014"
I would like to split the string into two parts
part1="This year is"
part2="2014"

user3073498
- 131
- 2
- 2
- 5
-5
votes
1 answer
How to trigger a function by clicking the left mouse click in Python?
I want to start off by saying that I am new to Python so I am sorry if this question is going to sound stupid to you.
I am just looking for an easy way to trigger a function whenever I press the left click of my mouse.
Could anyone illustrate me…

Beter
- 314
- 4
- 20