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 ) - Keys as arrow up, arrow left, arrow down, arrow right are defined (for full list, view getchlib.keynames.raw)
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)
Echo argument (new in v1.0.3)
With echo=True
characters readed are echoed to the screen.
key=getchlib.getkey(echo=True)
Hotkeys
import getchlib
def function():
print('hello')
f=getchlib.HotKeyListener()
f.add_hotkey('ctrl-x',function)
f.start()
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.10.tar.gz
(12.4 kB
view details)
File details
Details for the file getchlib-1.0.10.tar.gz
.
File metadata
- Download URL: getchlib-1.0.10.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.8.1 keyring/23.4.0 rfc3986/1.5.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f70d06e5e7583e035f67e688a8c0e5c2e9f994f1892c776215f4ebccbddc86c0 |
|
MD5 | 545bff3deed68428c18c57f0ee3f37ca |
|
BLAKE2b-256 | 8faca616987bbcde33d9125723109db6f872bd5f546284517724c6496614aadf |