Metadata-Version: 2.4
Name: PyKeyeasy
Version: 1.0.1
Summary: Ultra-simple keyboard detection with automatic variables
Home-page: https://github.com/emicics/PyKeys
Author: Emiliano
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: keyboard
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

This library simplifies key detection with just three simple, easy-to-call values:

PyKey.key
PyKey.hotkey
PyKey.F

Key displays the currently pressed letter key along with combinations. For example:

if PyKey.key == 'a, d':
	print("The 'a' and 'd' keys are pressed in that order")`

for hotkeys:

if PyKey.hotkey == ctrl, d':
	print("You pressed Ctrl+D")

and for F:

if PyKey.F == 'F5':
	print("You pressed F5")
