Metadata-Version: 2.1
Name: key-pressing
Version: 0.1.3.132321b0
Summary: Key pressing detecting for Python.
Home-page: UNKNOWN
Author: cheny0y0, REGE
Author-email: cyy144881@icloud.com
License: UNKNOWN
Description: # print_function_py2
        
        ## Usage
        
        This package is using for detect pressing in Python.
        
        ## How to use it
        
        Import it by: `import key_pressing`. No any additional modules or packages will be installed. You need to install bash if you are using POSIX.
        
        ```python2
        >>> import key_pressing
        >>> key_pressing.detect_onekey()
        O
        'O'
        >>> key_pressing.detect_escape()
        ^[[7m
        '\x1b[7m'
        >>> key_pressing.detect_keys(12)
        Hello world!
        'Hello world!'
        ```
        
        If you cannot install the package by pip, please download the tar.gz file and extract to sys.path(PYTHONPATH).
        
        ## Known issues
        
        * Cannot be used on Win32 platform.
        * Cannot detect newline character correctly(got it as `\x00`).
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: iOS
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.3
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
