This commit is contained in:
Firepup Sixfifty 2021-11-17 16:29:47 +00:00
parent 5006fde8a5
commit 18d2c4f696
8 changed files with 11 additions and 10 deletions

3
.breakpoints Normal file
View file

@ -0,0 +1,3 @@
{
"files": {}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -1,6 +1,6 @@
[metadata]
name = fkeycapture-Firepup650
version = 0.0.1
version = 0.0.2
author = Firepup650
author_email = firepyp650@gmail.com
description = A way to capture keystrokes

View file

@ -1,4 +1,5 @@
import termios, fcntl, sys
global fd,flags_save,attrs_save
fd = sys.stdin.fileno()
flags_save = fcntl.fcntl(fd, fcntl.F_GETFL)
attrs_save = termios.tcgetattr(fd)

View file

@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: fkeycapture-Firepup650
Version: 0.0.1
Version: 0.0.2
Summary: A way to capture keystrokes
Home-page: https://github.com/Alexander-Maples/fkeycapture
Author: Firepup650
@ -8,6 +8,11 @@ Author-email: firepyp650@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Alexander-Maples/fkeycapture/issues
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
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
@ -18,11 +23,3 @@ Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Requires-Python: >=3.6
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