v.0.0.2
This commit is contained in:
parent
5006fde8a5
commit
18d2c4f696
8 changed files with 11 additions and 10 deletions
3
.breakpoints
Normal file
3
.breakpoints
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"files": {}
|
||||||
|
}
|
BIN
package/dist/fkeycapture-Firepup650-0.0.1.tar.gz
vendored
BIN
package/dist/fkeycapture-Firepup650-0.0.1.tar.gz
vendored
Binary file not shown.
BIN
package/dist/fkeycapture-Firepup650-0.0.2.tar.gz
vendored
Normal file
BIN
package/dist/fkeycapture-Firepup650-0.0.2.tar.gz
vendored
Normal file
Binary file not shown.
Binary file not shown.
BIN
package/dist/fkeycapture_Firepup650-0.0.2-py3-none-any.whl
vendored
Normal file
BIN
package/dist/fkeycapture_Firepup650-0.0.2-py3-none-any.whl
vendored
Normal file
Binary file not shown.
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = fkeycapture-Firepup650
|
name = fkeycapture-Firepup650
|
||||||
version = 0.0.1
|
version = 0.0.2
|
||||||
author = Firepup650
|
author = Firepup650
|
||||||
author_email = firepyp650@gmail.com
|
author_email = firepyp650@gmail.com
|
||||||
description = A way to capture keystrokes
|
description = A way to capture keystrokes
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import termios, fcntl, sys
|
import termios, fcntl, sys
|
||||||
|
global fd,flags_save,attrs_save
|
||||||
fd = sys.stdin.fileno()
|
fd = sys.stdin.fileno()
|
||||||
flags_save = fcntl.fcntl(fd, fcntl.F_GETFL)
|
flags_save = fcntl.fcntl(fd, fcntl.F_GETFL)
|
||||||
attrs_save = termios.tcgetattr(fd)
|
attrs_save = termios.tcgetattr(fd)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Metadata-Version: 2.1
|
Metadata-Version: 2.1
|
||||||
Name: fkeycapture-Firepup650
|
Name: fkeycapture-Firepup650
|
||||||
Version: 0.0.1
|
Version: 0.0.2
|
||||||
Summary: A way to capture keystrokes
|
Summary: A way to capture keystrokes
|
||||||
Home-page: https://github.com/Alexander-Maples/fkeycapture
|
Home-page: https://github.com/Alexander-Maples/fkeycapture
|
||||||
Author: Firepup650
|
Author: Firepup650
|
||||||
|
@ -8,6 +8,11 @@ Author-email: firepyp650@gmail.com
|
||||||
License: UNKNOWN
|
License: UNKNOWN
|
||||||
Project-URL: Bug Tracker, https://github.com/Alexander-Maples/fkeycapture/issues
|
Project-URL: Bug Tracker, https://github.com/Alexander-Maples/fkeycapture/issues
|
||||||
Project-URL: replit, https://replit.com/@ALEXANDERMAPLES/fkeycapture
|
Project-URL: replit, https://replit.com/@ALEXANDERMAPLES/fkeycapture
|
||||||
|
Description: # fkeycapture
|
||||||
|
This is a simple and easy to use package that allows you to capture individual keystrokes from the user.
|
||||||
|
#### Forms:
|
||||||
|
1. (Default) Recive key as a string
|
||||||
|
2. Recive key as bytes
|
||||||
Platform: UNKNOWN
|
Platform: UNKNOWN
|
||||||
Classifier: Programming Language :: Python :: 3
|
Classifier: Programming Language :: Python :: 3
|
||||||
Classifier: License :: OSI Approved :: MIT License
|
Classifier: License :: OSI Approved :: MIT License
|
||||||
|
@ -18,11 +23,3 @@ Classifier: Intended Audience :: Developers
|
||||||
Classifier: Natural Language :: English
|
Classifier: Natural Language :: English
|
||||||
Requires-Python: >=3.6
|
Requires-Python: >=3.6
|
||||||
Description-Content-Type: text/markdown
|
Description-Content-Type: text/markdown
|
||||||
License-File: LICENSE
|
|
||||||
|
|
||||||
# fkeycapture
|
|
||||||
This is a simple and easy to use package that allows you to capture individual keystrokes from the user.
|
|
||||||
#### Forms:
|
|
||||||
1. (Default) Recive key as a string
|
|
||||||
2. Recive key as bytes
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue