forked from mrathena/python.yolo.apex.autoaim.helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.pynput.keyboard.py
35 lines (29 loc) · 899 Bytes
/
test.pynput.keyboard.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import multiprocessing
from multiprocessing import Process
from pynput.keyboard import Key, KeyCode, Listener
def keyboard():
def release(key):
print(key)
if key == Key.end:
# 结束程序
return False
elif hasattr(key, 'vk'):
if key.vk == 103:
print(103)
elif key.vk == 104:
print('i')
elif key.vk == 105:
print('d')
elif key == KeyCode.from_char('P'):
print('P')
elif key == KeyCode.from_char('I'):
print('I')
elif key == KeyCode.from_char('D'):
print('D')
with Listener(on_release=release) as k:
k.join()
if __name__ == '__main__':
multiprocessing.freeze_support()
pk = Process(target=keyboard, args=(), name='Keyboard')
pk.start()
pk.join()