Library for reading key presses
Project description
getchlib - library for reading key presses
Overview
getchlib
is library for reading key presses and assigning hotkeys.
Features
- Full Unicode support
- Blocking and non-blocking key press reading
- Cross-platform support
- Basic hotkeys (
CTRL-V
orALT-A
) are defined - Not interruptable key press reading support ( cannot be interrupted by
CTRL-C
, returns key code instead )
Installation
pip install getchlib
Usage
Key Presses
Blocking
import getchlib
key=getchlib.getkey()
Waits until user presses a key.
Non-Blocking
import getchlib
key=getchlib.getkey(False)
Returns first key pressed in time specified by its second argument tout
( 0.01 by default ).
Not interruptable
import getchlib
key=getchlib.getkey(catch=True)
Hotkeys
import getchlib
def function():
print('hello')
f=getchlib.HotKeyListener()
f.add_hotkey('ctrl-x',function)
f.start()
NOTE:f.start() runs on foreground
Not interruptable
import getchlib
def function():
print('hello')
f=getchlib.HotKeyListener(catch=True)
f.add_hotkey('a',function)
f.start()
License
getchlib
is licensed under GPL License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
getchlib-1.0.2.tar.gz
(4.6 kB
view details)
File details
Details for the file getchlib-1.0.2.tar.gz
.
File metadata
- Download URL: getchlib-1.0.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e19d1aa9ed80efdd49e9a5aee8968625e063314f6130018f641ee7c484bd0b56 |
|
MD5 | f46e9efb73cc6fb50ee3dd60148d4bdd |
|
BLAKE2b-256 | 486ff00bc438393772a0405929e92e3d1ff6bfae4c11ab6bbdcd7d5dbec58a92 |