पायथन ने उपयोगकर्ता के एक एकल चरित्र को पढ़ा


260

क्या उपयोगकर्ता इनपुट से एक एकल चरित्र को पढ़ने का एक तरीका है? उदाहरण के लिए, वे टर्मिनल पर एक कुंजी दबाते हैं और इसे वापस लौटा दिया जाता है (जैसे की तरह getch())। मुझे पता है कि इसके लिए विंडोज में एक फंक्शन है, लेकिन मैं ऐसा कुछ चाहूंगा जो क्रॉस-प्लेटफॉर्म हो।


1
खिड़कियों पर मैं इस सवाल के रूप में एक ही समस्या में भाग गया । समाधान के msvcrt.getchसाथ बदलने के लिए है msvcrt.getwch, जैसा कि वहाँ सुझाव दिया गया है।
ए।

समाधान स्थापित है getch मॉड्यूल "पाइप स्थापित getch"। को Python2 उपयोग आदेश के लिए "pip2 स्थापित files.pythonhosted.org/packages/56/f7/... "। यह समाधान Termux (Android) में भी काम करता है।
पेट्र मच

जवाबों:


189

यहां एक साइट का लिंक दिया गया है जिसमें कहा गया है कि आप Windows, Linux और OSX में एकल चरित्र को कैसे पढ़ सकते हैं: http://code.activestate.com/recipes/134892/

class _Getch:
    """Gets a single character from standard input.  Does not echo to the
screen."""
    def __init__(self):
        try:
            self.impl = _GetchWindows()
        except ImportError:
            self.impl = _GetchUnix()

    def __call__(self): return self.impl()


class _GetchUnix:
    def __init__(self):
        import tty, sys

    def __call__(self):
        import sys, tty, termios
        fd = sys.stdin.fileno()
        old_settings = termios.tcgetattr(fd)
        try:
            tty.setraw(sys.stdin.fileno())
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch


class _GetchWindows:
    def __init__(self):
        import msvcrt

    def __call__(self):
        import msvcrt
        return msvcrt.getch()


getch = _Getch()

18
कोड काफी कम लगता है कि आप इसे शामिल कर सकते हैं, लेकिन इतनी जल्दी एक अच्छा (क्रॉस-प्लेटफॉर्म) उत्तर खोजने के लिए +1।
जॉन मुल्डर

4
क्या यह गैर-लैटिन (जैसे, सिरिलिक) अक्षरों को अच्छी तरह से संभालता है? मुझे इसमें कोई समस्या हो रही है और यह पता नहीं चल सकता है कि यह मेरी गलती है या नहीं।
फालिया

7
मुझे यह पसंद नहीं है कि ImportErrorअपवाद का उपयोग किसी प्रकार के इफ-स्टेटमेंट की तरह कैसे किया जाता है; OS की जाँच करने के लिए platform.system () को क्यों नहीं कहा जाता?
सिस्मॉइड

10
@ सिस्माइड: क्षमा मांगना आमतौर पर बेहतर माना जाता है, देखें stackoverflow.com/questions/12265451/…
dirkjot

4
OS X पर काम नहीं करता है: "old_settings = termios.tcgetattr (fd)" "termios.error: (25, 'डिवाइस के लिए अनुपयुक्त आईक्यूएलटी')"
प्रदर्शित नाम

79
sys.stdin.read(1)

मूल रूप से STDIN से 1 बाइट पढ़ेगा।

यदि आपको उस विधि का उपयोग करना चाहिए जो \nआपके लिए इंतजार नहीं करती है तो इस कोड का उपयोग कर सकते हैं जैसा कि पिछले उत्तर में दिया गया है:

class _Getch:
    """Gets a single character from standard input.  Does not echo to the screen."""
    def __init__(self):
        try:
            self.impl = _GetchWindows()
        except ImportError:
            self.impl = _GetchUnix()

    def __call__(self): return self.impl()


class _GetchUnix:
    def __init__(self):
        import tty, sys

    def __call__(self):
        import sys, tty, termios
        fd = sys.stdin.fileno()
        old_settings = termios.tcgetattr(fd)
        try:
            tty.setraw(sys.stdin.fileno())
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch


class _GetchWindows:
    def __init__(self):
        import msvcrt

    def __call__(self):
        import msvcrt
        return msvcrt.getch()


getch = _Getch()

( http://code.activestate.com/recipes/134892/ से लिया गया )


33
मुझे यह अजीब लगता है कि sys.stdin.read (1) a \ n, lol का इंतजार करता है। हालांकि, प्रस्तुत करने के लिए धन्यवाद।
Evan Fosmark

3
एक चरित्र या एक बाइट? वही नहीं है।
chryss

4
@ इवान, ऐसा इसलिए है क्योंकि अजगर डिफ़ॉल्ट रूप से लाइन बफर्ड मोड में है
जॉन ला रूय

3
@EvanFosmark: यह जरूरी नहीं है कि sys.stdin.read (1) इंतजार कर रहा है \ n, यह है कि टर्मिनल प्रोग्राम जब आपके प्रोग्राम के अन्य पात्रों को भेजना तय करता है, तब तक उन्हें नहीं लिखता है जब तक कि वह '\ n' नहीं देखता है - और कैसे आप बैकस्पेस दबा सकते हैं और जो आप टाइप कर रहे हैं उसे सही कर सकते हैं (इसका गंभीर उत्तर यह है - लाइन कंट्रोल लागू करने के लिए अजगर प्रोग्राम सिखाएं, बफर रखें, बैकस्पेस प्रोसेस करें, लेकिन यह एक अलग दुनिया है जिसे आप केवल "कैरेक्टर रीडिंग" में खरीदना नहीं चाहते हैं, और अपनी लाइन बना सकते हैं। आपके सिस्टम पर अन्य सभी कार्यक्रमों से अलग है।)
टोनी डेलरो

2
@ सिस्माइड ईएएफपी
वॉल्टह

70

ActiveState रेसिपी को दो उत्तरों में शब्दशः उद्धृत किया गया है। इसे नीचे उबाला जा सकता है:

def _find_getch():
    try:
        import termios
    except ImportError:
        # Non-POSIX. Return msvcrt's (Windows') getch.
        import msvcrt
        return msvcrt.getch

    # POSIX system. Create and return a getch that manipulates the tty.
    import sys, tty
    def _getch():
        fd = sys.stdin.fileno()
        old_settings = termios.tcgetattr(fd)
        try:
            tty.setraw(fd)
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch

    return _getch

getch = _find_getch()

अच्छा लगा। लेकिन यह KeyboardInterrupt (Ctrl + C) के पहले चार्ट को भी पढ़ेगा, और कोड के साथ बाहर निकलने की संभावना है 0
user3342816

51

इसके अलावा प्रयास करने लायक है रीडचर लाइब्रेरी, जो अन्य उत्तरों में उल्लिखित ActiveState नुस्खा पर आधारित है।

स्थापना:

pip install readchar

उपयोग:

import readchar
print("Reading a char:")
print(repr(readchar.readchar()))
print("Reading a key:")
print(repr(readchar.readkey()))

पायथन 2.7 के साथ विंडोज और लिनक्स पर परीक्षण किया गया।

Windows पर, केवल कुंजी जो पत्र या ASCII नियंत्रण कोड के लिए नक्शे का समर्थन कर रहे ( Backspace, Enter, Esc, Tab, Ctrl+ पत्र )। जीएनयू / लिनक्स पर (सटीक टर्मिनल पर निर्भर करता है, शायद?) आप भी मिलता है Insert, Delete, Pg Up, Pg Dn, Home, Endऔर कुंजी ... लेकिन फिर, वहाँ एक से इन विशेष कुंजियों को अलग मुद्दों है ।F nEsc

कैविएट: जैसे कि अधिकांश (सभी?) उत्तरों के साथ, यहाँ, Ctrl+ C, Ctrl+ Dऔर Ctrl+ जैसी सिग्नल कुंजियाँ Zपकड़ी और लौटी हुई हैं (जैसे '\x03', '\x04'और '\x1a'क्रमशः); आपका कार्यक्रम कठिन हो सकता है।


3
लिनक्स पर भी पायथन 3 के साथ काम करता है। गेटच से बहुत बेहतर है, क्योंकि रीडचर कुंजी (थ्रेड्स या एसिंसीओ के माध्यम से) की प्रतीक्षा करते समय मुद्रण को रोकने की अनुमति देता है।
जुबेल

Win10 + पायथन 3.5 on ERROR: रूट पर परीक्षण किया गया: '<string>' में बाएं ऑपरेंड के रूप में स्ट्रिंग की आवश्यकता होती है, न कि बाइट्स Traceback (सबसे हालिया कॉल अंतिम): फ़ाइल ".. \ main.py", पंक्ति 184, आवरण परिणाम में = func (* args, ** kwargs) फ़ाइल "C: \ GitHub \ Python- डेमो \ डेमो \ day_hello.py", पंक्ति 41, readch_eg प्रिंट (readchar.readchar ()) फ़ाइल में इस C: \ Users \ ipcjs \ AppData \ स्थानीय \ कार्यक्रम \ Python \ Python35 \ lib \ साइट-संकुल \ readchar \ readchar_windows.py ", पंक्ति 14, '' x00 \ xe0 'में ch जबकि readchar में पंक्ति 14 में: TypeError:' में <string> 'को बाएं ऑपरेंड के रूप में स्ट्रिंग की आवश्यकता होती है , बाइट्स नहीं
ipcjs

@ipcjs कृपया रिपोर्ट करें कि रखवाले को बग
Melih Yıldız '

1
यह सबसे अच्छा जवाब है। इस कार्यक्षमता के लिए वीएस सी ++ लाइब्रेरी के लिए एक निर्भरता जोड़ना पागल है।
FistOfFury

17

एक वैकल्पिक विधि:

import os
import sys    
import termios
import fcntl

def getch():
  fd = sys.stdin.fileno()

  oldterm = termios.tcgetattr(fd)
  newattr = termios.tcgetattr(fd)
  newattr[3] = newattr[3] & ~termios.ICANON & ~termios.ECHO
  termios.tcsetattr(fd, termios.TCSANOW, newattr)

  oldflags = fcntl.fcntl(fd, fcntl.F_GETFL)
  fcntl.fcntl(fd, fcntl.F_SETFL, oldflags | os.O_NONBLOCK)

  try:        
    while 1:            
      try:
        c = sys.stdin.read(1)
        break
      except IOError: pass
  finally:
    termios.tcsetattr(fd, termios.TCSAFLUSH, oldterm)
    fcntl.fcntl(fd, fcntl.F_SETFL, oldflags)
  return c

से इस ब्लॉग पोस्ट


मेरे लिए काम नहीं करता है - कॉल करने पर तुरंत खाली स्ट्रिंग लौटाता है। पायथन 3.6 के साथ लिनक्स पर।
Marein

1
@ मेरिन यदि आप इसे ब्लॉक करना चाहते हैं (इनपुट की प्रतीक्षा करें), को हटा दें | os.O_NONBLOCK। अन्यथा, आप इसे लूप में रख सकते हैं (कताई से रखने के लिए लूप में थोड़ा सा सोने के लिए अच्छा विचार)।
क्रिस ग्रेग

पायथन में, while Trueतब उपयोग करना बेहतर होता है while 1
बेनामी

10

यह कोड, यहाँ पर आधारित , सही ढंग से KeyboardInterrupt और EOFError बढ़ाएगा यदि Ctrl+ Cया Ctrl+ Dदबाया गया हो।

विंडोज और लिनक्स पर काम करना चाहिए। एक ओएस एक्स संस्करण मूल स्रोत से उपलब्ध है।

class _Getch:
    """Gets a single character from standard input.  Does not echo to the screen."""
    def __init__(self):
        try:
            self.impl = _GetchWindows()
        except ImportError:
            self.impl = _GetchUnix()

    def __call__(self): 
        char = self.impl()
        if char == '\x03':
            raise KeyboardInterrupt
        elif char == '\x04':
            raise EOFError
        return char

class _GetchUnix:
    def __init__(self):
        import tty
        import sys

    def __call__(self):
        import sys
        import tty
        import termios
        fd = sys.stdin.fileno()
        old_settings = termios.tcgetattr(fd)
        try:
            tty.setraw(sys.stdin.fileno())
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch


class _GetchWindows:
    def __init__(self):
        import msvcrt

    def __call__(self):
        import msvcrt
        return msvcrt.getch()


getch = _Getch()

7

(वर्तमान में) शीर्ष क्रम वाला उत्तर (ActiveState कोड के साथ) अत्यधिक जटिल है। जब एक मात्र फ़ंक्शन को पर्याप्त होना चाहिए, तो मुझे कक्षाओं का उपयोग करने का कोई कारण नहीं दिखता है। नीचे दो कार्यान्वयन हैं जो एक ही चीज़ को पूरा करते हैं लेकिन अधिक पठनीय कोड के साथ।

ये दोनों कार्यान्वयन:

  1. पायथन 2 या पायथन 3 में ठीक काम करें
  2. विंडोज, OSX और लिनक्स पर काम करते हैं
  3. सिर्फ एक बाइट पढ़ें (यानी, वे एक नई लाइन की प्रतीक्षा नहीं करते)
  4. किसी भी बाहरी पुस्तकालयों पर निर्भर न हों
  5. स्व-सम्‍मिलित हैं (फ़ंक्शन परिभाषा के बाहर कोई कोड नहीं)

संस्करण 1: पठनीय और सरल

def getChar():
    try:
        # for Windows-based systems
        import msvcrt # If successful, we are on Windows
        return msvcrt.getch()

    except ImportError:
        # for POSIX-based systems (with termios & tty support)
        import tty, sys, termios  # raises ImportError if unsupported

        fd = sys.stdin.fileno()
        oldSettings = termios.tcgetattr(fd)

        try:
            tty.setcbreak(fd)
            answer = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, oldSettings)

        return answer

संस्करण 2: बार-बार आयात और अपवाद से बचने से बचें:

[संपादित करें] मैंने ActiveState कोड का एक लाभ उठाया। यदि आप कई बार वर्णों को पढ़ने की योजना बनाते हैं, तो वह कोड विंडोज आयात को दोहराने की लागत (नगण्य) और यूनिक्स जैसी प्रणालियों पर आयात आयात अपवाद से बचा जाता है। जबकि आपको शायद उस नगण्य अनुकूलन की तुलना में कोड पठनीयता के बारे में अधिक चिंतित होना चाहिए, यहां एक विकल्प है (यह लुई के उत्तर के समान है, लेकिन getChar () स्व-निहित है) जो एक्टिवस्टैट कोड के समान कार्य करता है और अधिक पठनीय है

def getChar():
    # figure out which function to use once, and store it in _func
    if "_func" not in getChar.__dict__:
        try:
            # for Windows-based systems
            import msvcrt # If successful, we are on Windows
            getChar._func=msvcrt.getch

        except ImportError:
            # for POSIX-based systems (with termios & tty support)
            import tty, sys, termios # raises ImportError if unsupported

            def _ttyRead():
                fd = sys.stdin.fileno()
                oldSettings = termios.tcgetattr(fd)

                try:
                    tty.setcbreak(fd)
                    answer = sys.stdin.read(1)
                finally:
                    termios.tcsetattr(fd, termios.TCSADRAIN, oldSettings)

                return answer

            getChar._func=_ttyRead

    return getChar._func()

उदाहरण कोड जो getChar () के ऊपर दिए गए संस्करणों में से किसी एक का उपयोग करता है:

from __future__ import print_function # put at top of file if using Python 2

# Example of a prompt for one character of input
promptStr   = "Please give me a character:"
responseStr = "Thank you for giving me a '{}'."
print(promptStr, end="\n> ")
answer = getChar()
print("\n")
print(responseStr.format(answer))

2
मैं tty.setraw () के साथ एक समस्या में भाग गया जब एक साथ कुंजी (बहु-थ्रेडेड) की प्रतीक्षा करते हुए संदेश प्रिंट करता है। लंबी कहानी छोटी, मैंने पाया कि tty.setcbreak () का उपयोग करने से आपको अन्य सभी सामान्य सामानों को तोड़ने के बिना एक ही चरित्र मिलता है। इस उत्तर
TheDavidFactor

4

यह एक संदर्भ प्रबंधक के लिए उपयोग का मामला हो सकता है। Windows OS के लिए अलग-अलग भत्ते छोड़कर, यहाँ मेरा सुझाव है:

#!/usr/bin/env python3
# file: 'readchar.py'
"""
Implementation of a way to get a single character of input
without waiting for the user to hit <Enter>.
(OS is Linux, Ubuntu 14.04)
"""

import tty, sys, termios

class ReadChar():
    def __enter__(self):
        self.fd = sys.stdin.fileno()
        self.old_settings = termios.tcgetattr(self.fd)
        tty.setraw(sys.stdin.fileno())
        return sys.stdin.read(1)
    def __exit__(self, type, value, traceback):
        termios.tcsetattr(self.fd, termios.TCSADRAIN, self.old_settings)

def test():
    while True:
        with ReadChar() as rc:
            char = rc
        if ord(char) <= 32:
            print("You entered character with ordinal {}."\
                        .format(ord(char)))
        else:
            print("You entered character '{}'."\
                        .format(char))
        if char in "^C^D":
            sys.exit()

if __name__ == "__main__":
    test()

तुम भी लौट सकते self में __enter__है और एक है readविधि है कि रिटर्न sys.stdin.read(1), तो आप कई पात्रों एक संदर्भ में पढ़ सकते हैं।
L3viathan

4

इसका उपयोग करने का प्रयास करें: http://home.wlu.edu/~levys/software/kbhit.py यह गैर-अवरोधक है (इसका अर्थ है कि आपके पास थोड़ी देर का लूप हो सकता है और बिना रोक के एक प्रमुख प्रेस का पता लगा सकता है) और क्रॉस-प्लेटफ़ॉर्म।

import os

# Windows
if os.name == 'nt':
    import msvcrt

# Posix (Linux, OS X)
else:
    import sys
    import termios
    import atexit
    from select import select


class KBHit:

    def __init__(self):
        '''Creates a KBHit object that you can call to do various keyboard things.'''

        if os.name == 'nt':
            pass

        else:

            # Save the terminal settings
            self.fd = sys.stdin.fileno()
            self.new_term = termios.tcgetattr(self.fd)
            self.old_term = termios.tcgetattr(self.fd)

            # New terminal setting unbuffered
            self.new_term[3] = (self.new_term[3] & ~termios.ICANON & ~termios.ECHO)
            termios.tcsetattr(self.fd, termios.TCSAFLUSH, self.new_term)

            # Support normal-terminal reset at exit
            atexit.register(self.set_normal_term)


    def set_normal_term(self):
        ''' Resets to normal terminal.  On Windows this is a no-op.
        '''

        if os.name == 'nt':
            pass

        else:
            termios.tcsetattr(self.fd, termios.TCSAFLUSH, self.old_term)


    def getch(self):
        ''' Returns a keyboard character after kbhit() has been called.
            Should not be called in the same program as getarrow().
        '''

        s = ''

        if os.name == 'nt':
            return msvcrt.getch().decode('utf-8')

        else:
            return sys.stdin.read(1)


    def getarrow(self):
        ''' Returns an arrow-key code after kbhit() has been called. Codes are
        0 : up
        1 : right
        2 : down
        3 : left
        Should not be called in the same program as getch().
        '''

        if os.name == 'nt':
            msvcrt.getch() # skip 0xE0
            c = msvcrt.getch()
            vals = [72, 77, 80, 75]

        else:
            c = sys.stdin.read(3)[2]
            vals = [65, 67, 66, 68]

        return vals.index(ord(c.decode('utf-8')))


    def kbhit(self):
        ''' Returns True if keyboard character was hit, False otherwise.
        '''
        if os.name == 'nt':
            return msvcrt.kbhit()

        else:
            dr,dw,de = select([sys.stdin], [], [], 0)
            return dr != []

इसका उपयोग करने के लिए एक उदाहरण:

import kbhit

kb = kbhit.KBHit()

while(True): 
    print("Key not pressed") #Do something
    if kb.kbhit(): #If a key is pressed:
        k_in = kb.getch() #Detect what key was pressed
        print("You pressed ", k_in, "!") #Do something
kb.set_normal_term()

या आप PyPi से getch मॉड्यूल का उपयोग कर सकते हैं । लेकिन यह लूप को रोक देगा


3

यह NON-BLOCKING है, एक कुंजी पढ़ता है और इसे keypress.key में संग्रहीत करता है।

import Tkinter as tk


class Keypress:
    def __init__(self):
        self.root = tk.Tk()
        self.root.geometry('300x200')
        self.root.bind('<KeyPress>', self.onKeyPress)

    def onKeyPress(self, event):
        self.key = event.char

    def __eq__(self, other):
        return self.key == other

    def __str__(self):
        return self.key

अपने कार्यक्रम में

keypress = Keypress()

while something:
   do something
   if keypress == 'c':
        break
   elif keypress == 'i': 
       print('info')
   else:
       print("i dont understand %s" % keypress)

1
@ थोरसुमोनर: इस कोड में कई समस्याएं हैं - इसलिए नहीं , यह कमांड लाइन अनुप्रयोगों के लिए काम नहीं करेगा।
मार्टिउ

यह एक कमांड लाइन आवेदन के लिए चलता है, यह देखते हुए कि विंडोज़ प्रबंधक चल रहा है।
दावूद तागावी-नजद

नहीं, यह बिना सिर के ओएस में नहीं चलता है। लेकिन यह एक कमांड लाइन विंडो में चलता है।
दावूद तागावी-नेजाद

3

जवाब यहाँ जानकारीपूर्ण थे, लेकिन मैं भी अलग घटनाओं में कुंजी दबाना बंद एसिंक्रोनस रूप से और आग कुंजी दबाव प्राप्त करने के लिए एक तरह से चाहता था, एक धागा सुरक्षित, पार मंच रास्ते में सब। PyGame भी मेरे लिए फूला हुआ था। इसलिए मैंने निम्नलिखित बनाया (पायथन 2.7 में, लेकिन मुझे संदेह है कि यह आसानी से पोर्टेबल है), जो मुझे लगा कि मैं यहां साझा करूंगा अगर यह किसी और के लिए उपयोगी था। मैंने इसे keyPress.py नामक फ़ाइल में संग्रहीत किया है।

class _Getch:
    """Gets a single character from standard input.  Does not echo to the
screen. From http://code.activestate.com/recipes/134892/"""
    def __init__(self):
        try:
            self.impl = _GetchWindows()
        except ImportError:
            try:
                self.impl = _GetchMacCarbon()
            except(AttributeError, ImportError):
                self.impl = _GetchUnix()

    def __call__(self): return self.impl()


class _GetchUnix:
    def __init__(self):
        import tty, sys, termios # import termios now or else you'll get the Unix version on the Mac

    def __call__(self):
        import sys, tty, termios
        fd = sys.stdin.fileno()
        old_settings = termios.tcgetattr(fd)
        try:
            tty.setraw(sys.stdin.fileno())
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch

class _GetchWindows:
    def __init__(self):
        import msvcrt

    def __call__(self):
        import msvcrt
        return msvcrt.getch()

class _GetchMacCarbon:
    """
    A function which returns the current ASCII key that is down;
    if no ASCII key is down, the null string is returned.  The
    page http://www.mactech.com/macintosh-c/chap02-1.html was
    very helpful in figuring out how to do this.
    """
    def __init__(self):
        import Carbon
        Carbon.Evt #see if it has this (in Unix, it doesn't)

    def __call__(self):
        import Carbon
        if Carbon.Evt.EventAvail(0x0008)[0]==0: # 0x0008 is the keyDownMask
            return ''
        else:
            #
            # The event contains the following info:
            # (what,msg,when,where,mod)=Carbon.Evt.GetNextEvent(0x0008)[1]
            #
            # The message (msg) contains the ASCII char which is
            # extracted with the 0x000000FF charCodeMask; this
            # number is converted to an ASCII character with chr() and
            # returned
            #
            (what,msg,when,where,mod)=Carbon.Evt.GetNextEvent(0x0008)[1]
            return chr(msg & 0x000000FF)

import threading


# From  https://stackoverflow.com/a/2022629/2924421
class Event(list):
    def __call__(self, *args, **kwargs):
        for f in self:
            f(*args, **kwargs)

    def __repr__(self):
        return "Event(%s)" % list.__repr__(self)            


def getKey():
    inkey = _Getch()
    import sys
    for i in xrange(sys.maxint):
        k=inkey()
        if k<>'':break
    return k

class KeyCallbackFunction():
    callbackParam = None
    actualFunction = None

    def __init__(self, actualFunction, callbackParam):
        self.actualFunction = actualFunction
        self.callbackParam = callbackParam

    def doCallback(self, inputKey):
        if not self.actualFunction is None:
            if self.callbackParam is None:
                callbackFunctionThread = threading.Thread(target=self.actualFunction, args=(inputKey,))
            else:
                callbackFunctionThread = threading.Thread(target=self.actualFunction, args=(inputKey,self.callbackParam))

            callbackFunctionThread.daemon = True
            callbackFunctionThread.start()



class KeyCapture():


    gotKeyLock = threading.Lock()
    gotKeys = []
    gotKeyEvent = threading.Event()

    keyBlockingSetKeyLock = threading.Lock()

    addingEventsLock = threading.Lock()
    keyReceiveEvents = Event()


    keysGotLock = threading.Lock()
    keysGot = []

    keyBlockingKeyLockLossy = threading.Lock()
    keyBlockingKeyLossy = None
    keyBlockingEventLossy = threading.Event()

    keysBlockingGotLock = threading.Lock()
    keysBlockingGot = []
    keyBlockingGotEvent = threading.Event()



    wantToStopLock = threading.Lock()
    wantToStop = False

    stoppedLock = threading.Lock()
    stopped = True

    isRunningEvent = False

    getKeyThread = None

    keyFunction = None
    keyArgs = None

    # Begin capturing keys. A seperate thread is launched that
    # captures key presses, and then these can be received via get,
    # getAsync, and adding an event via addEvent. Note that this
    # will prevent the system to accept keys as normal (say, if
    # you are in a python shell) because it overrides that key
    # capturing behavior.

    # If you start capture when it's already been started, a
    # InterruptedError("Keys are still being captured")
    # will be thrown

    # Note that get(), getAsync() and events are independent, so if a key is pressed:
    #
    # 1: Any calls to get() that are waiting, with lossy on, will return
    #    that key
    # 2: It will be stored in the queue of get keys, so that get() with lossy
    #    off will return the oldest key pressed not returned by get() yet.
    # 3: All events will be fired with that key as their input
    # 4: It will be stored in the list of getAsync() keys, where that list
    #    will be returned and set to empty list on the next call to getAsync().
    # get() call with it, aand add it to the getAsync() list.
    def startCapture(self, keyFunction=None, args=None):
        # Make sure we aren't already capturing keys
        self.stoppedLock.acquire()
        if not self.stopped:
            self.stoppedLock.release()
            raise InterruptedError("Keys are still being captured")
            return
        self.stopped = False
        self.stoppedLock.release()

        # If we have captured before, we need to allow the get() calls to actually
        # wait for key presses now by clearing the event
        if self.keyBlockingEventLossy.is_set():
            self.keyBlockingEventLossy.clear()

        # Have one function that we call every time a key is captured, intended for stopping capture
        # as desired
        self.keyFunction = keyFunction
        self.keyArgs = args

        # Begin capturing keys (in a seperate thread)
        self.getKeyThread = threading.Thread(target=self._threadProcessKeyPresses)
        self.getKeyThread.daemon = True
        self.getKeyThread.start()

        # Process key captures (in a seperate thread)
        self.getKeyThread = threading.Thread(target=self._threadStoreKeyPresses)
        self.getKeyThread.daemon = True
        self.getKeyThread.start()


    def capturing(self):
        self.stoppedLock.acquire()
        isCapturing = not self.stopped
        self.stoppedLock.release()
        return isCapturing
    # Stops the thread that is capturing keys on the first opporunity
    # has to do so. It usually can't stop immediately because getting a key
    # is a blocking process, so this will probably stop capturing after the
    # next key is pressed.
    #
    # However, Sometimes if you call stopCapture it will stop before starting capturing the
    # next key, due to multithreading race conditions. So if you want to stop capturing
    # reliably, call stopCapture in a function added via addEvent. Then you are
    # guaranteed that capturing will stop immediately after the rest of the callback
    # functions are called (before starting to capture the next key).
    def stopCapture(self):
        self.wantToStopLock.acquire()
        self.wantToStop = True 
        self.wantToStopLock.release()

    # Takes in a function that will be called every time a key is pressed (with that
    # key passed in as the first paramater in that function)
    def addEvent(self, keyPressEventFunction, args=None):   
        self.addingEventsLock.acquire()
        callbackHolder = KeyCallbackFunction(keyPressEventFunction, args)
        self.keyReceiveEvents.append(callbackHolder.doCallback)
        self.addingEventsLock.release()
    def clearEvents(self):
        self.addingEventsLock.acquire()
        self.keyReceiveEvents = Event()
        self.addingEventsLock.release()
    # Gets a key captured by this KeyCapture, blocking until a key is pressed.
    # There is an optional lossy paramater:
    # If True all keys before this call are ignored, and the next pressed key
    #   will be returned.
    # If False this will return the oldest key captured that hasn't
    #   been returned by get yet. False is the default.
    def get(self, lossy=False):
        if lossy:
            # Wait for the next key to be pressed
            self.keyBlockingEventLossy.wait()
            self.keyBlockingKeyLockLossy.acquire()
            keyReceived = self.keyBlockingKeyLossy
            self.keyBlockingKeyLockLossy.release()
            return keyReceived
        else:
            while True:
                # Wait until a key is pressed
                self.keyBlockingGotEvent.wait()

                # Get the key pressed
                readKey = None
                self.keysBlockingGotLock.acquire()
                # Get a key if it exists
                if len(self.keysBlockingGot) != 0:
                    readKey = self.keysBlockingGot.pop(0)
                # If we got the last one, tell us to wait
                if len(self.keysBlockingGot) == 0:
                    self.keyBlockingGotEvent.clear()
                self.keysBlockingGotLock.release()

                # Process the key (if it actually exists)
                if not readKey is None:
                    return readKey

                # Exit if we are stopping
                self.wantToStopLock.acquire()
                if self.wantToStop:
                    self.wantToStopLock.release()
                    return None
                self.wantToStopLock.release()




    def clearGetList(self):
        self.keysBlockingGotLock.acquire()
        self.keysBlockingGot = []
        self.keysBlockingGotLock.release()

    # Gets a list of all keys pressed since the last call to getAsync, in order
    # from first pressed, second pressed, .., most recent pressed
    def getAsync(self):
        self.keysGotLock.acquire();
        keysPressedList = list(self.keysGot)
        self.keysGot = []
        self.keysGotLock.release()
        return keysPressedList

    def clearAsyncList(self):
        self.keysGotLock.acquire();
        self.keysGot = []
        self.keysGotLock.release();

    def _processKey(self, readKey):
        # Append to list for GetKeyAsync
        self.keysGotLock.acquire()
        self.keysGot.append(readKey)
        self.keysGotLock.release()

        # Call lossy blocking key events
        self.keyBlockingKeyLockLossy.acquire()
        self.keyBlockingKeyLossy = readKey
        self.keyBlockingEventLossy.set()
        self.keyBlockingEventLossy.clear()
        self.keyBlockingKeyLockLossy.release()

        # Call non-lossy blocking key events
        self.keysBlockingGotLock.acquire()
        self.keysBlockingGot.append(readKey)
        if len(self.keysBlockingGot) == 1:
            self.keyBlockingGotEvent.set()
        self.keysBlockingGotLock.release()

        # Call events added by AddEvent
        self.addingEventsLock.acquire()
        self.keyReceiveEvents(readKey)
        self.addingEventsLock.release()

    def _threadProcessKeyPresses(self):
        while True:
            # Wait until a key is pressed
            self.gotKeyEvent.wait()

            # Get the key pressed
            readKey = None
            self.gotKeyLock.acquire()
            # Get a key if it exists
            if len(self.gotKeys) != 0:
                readKey = self.gotKeys.pop(0)
            # If we got the last one, tell us to wait
            if len(self.gotKeys) == 0:
                self.gotKeyEvent.clear()
            self.gotKeyLock.release()

            # Process the key (if it actually exists)
            if not readKey is None:
                self._processKey(readKey)

            # Exit if we are stopping
            self.wantToStopLock.acquire()
            if self.wantToStop:
                self.wantToStopLock.release()
                break
            self.wantToStopLock.release()

    def _threadStoreKeyPresses(self):
        while True:
            # Get a key
            readKey = getKey()

            # Run the potential shut down function
            if not self.keyFunction is None:
                self.keyFunction(readKey, self.keyArgs)

            # Add the key to the list of pressed keys
            self.gotKeyLock.acquire()
            self.gotKeys.append(readKey)
            if len(self.gotKeys) == 1:
                self.gotKeyEvent.set()
            self.gotKeyLock.release()

            # Exit if we are stopping
            self.wantToStopLock.acquire()
            if self.wantToStop:
                self.wantToStopLock.release()
                self.gotKeyEvent.set()
                break
            self.wantToStopLock.release()


        # If we have reached here we stopped capturing

        # All we need to do to clean up is ensure that
        # all the calls to .get() now return None.
        # To ensure no calls are stuck never returning,
        # we will leave the event set so any tasks waiting
        # for it immediately exit. This will be unset upon
        # starting key capturing again.

        self.stoppedLock.acquire()

        # We also need to set this to True so we can start up
        # capturing again.
        self.stopped = True
        self.stopped = True

        self.keyBlockingKeyLockLossy.acquire()
        self.keyBlockingKeyLossy = None
        self.keyBlockingEventLossy.set()
        self.keyBlockingKeyLockLossy.release()

        self.keysBlockingGotLock.acquire()
        self.keyBlockingGotEvent.set()
        self.keysBlockingGotLock.release()

        self.stoppedLock.release()

विचार यह है कि आप या तो बस कॉल कर सकते हैं keyPress.getKey(), जो कीबोर्ड से एक कुंजी पढ़ेगा, फिर इसे वापस कर देगा।

यदि आप इससे अधिक कुछ चाहते हैं, तो मैंने एक KeyCaptureवस्तु बनाई । आप कुछ के माध्यम से एक बना सकते हैं keys = keyPress.KeyCapture()

फिर तीन चीजें हैं जो आप कर सकते हैं:

addEvent(functionName)किसी भी फ़ंक्शन में लेता है जो एक पैरामीटर में लेता है। फिर हर बार एक कुंजी दबाए जाने के बाद, इस फ़ंक्शन को उस कुंजी के स्ट्रिंग के साथ बुलाया जाएगा क्योंकि यह इनपुट है। ये एक अलग थ्रेड में चलाए जाते हैं, इसलिए आप उन सभी को ब्लॉक कर सकते हैं जो आप उनमें चाहते हैं और यह KeyCapturer की कार्यक्षमता को गड़बड़ नहीं करेगा और न ही अन्य घटनाओं में देरी करेगा।

get()पहले की तरह ही अवरोधक तरीके से एक कुंजी देता है। यहां अब इसकी आवश्यकता है क्योंकि KeyCaptureअब ऑब्जेक्ट के माध्यम से चाबियाँ पकड़ी जा रही हैं, इसलिए keyPress.getKey()उस व्यवहार के साथ संघर्ष होगा और दोनों को कुछ चाबियाँ याद आएंगी, क्योंकि एक समय में केवल एक कुंजी को पकड़ा जा सकता है। इसके अलावा, मान लें कि उपयोगकर्ता 'a' दबाता है, तो 'b', आप कॉल get()करते हैं, उपयोगकर्ता 'c' दबाता है। वह get()कॉल तुरंत 'ए' लौटाएगा, फिर यदि आप इसे दोबारा कॉल करेंगे तो यह 'बी', फिर 'सी' होगा। यदि आप इसे फिर से कॉल करते हैं तो यह तब तक ब्लॉक रहेगा जब तक दूसरी कुंजी दबाया नहीं जाता। यह सुनिश्चित करता है कि यदि आप वांछित हैं, तो आप किसी भी कुंजी को अवरुद्ध तरीके से याद नहीं करते हैं। तो इस तरह से यह keyPress.getKey()पहले से थोड़ा अलग है

यदि आप getKey()बैक का व्यवहार चाहते हैं , तो get(lossy=True)यह पसंद है get(), सिवाय इसके कि यह कॉल के बाद केवल दबाए गए कुंजी लौटाता है get()। इसलिए उपरोक्त उदाहरण में, get()तब तक ब्लॉक होगा जब तक कि उपयोगकर्ता 'ग' दबाता नहीं है, और यदि आप इसे फिर से कॉल करते हैं तो यह तब तक ब्लॉक रहेगा जब तक कि दूसरी कुंजी दबाया नहीं जाता है।

getAsync()थोड़ा अलग है। इसे कुछ ऐसी चीज़ों के लिए डिज़ाइन किया गया है जो बहुत अधिक प्रसंस्करण करती है, फिर कभी-कभी वापस आती है और जांचती है कि कौन सी कुंजी दबाए गए थे। इस प्रकार getAsync()अंतिम कॉल के बाद से दबाए गए सभी कुंजी की एक सूची देता है getAsync(), जिसमें सबसे पुरानी कुंजी को दबाया गया है। यह भी ब्लॉक नहीं करता है, जिसका अर्थ है कि यदि अंतिम कॉल के बाद से कोई कुंजी दबाया नहीं गया है getAsync(), तो एक खाली []लौटा दिया जाएगा।

वास्तव में कुंजियों को कैप्चर करना शुरू करने के लिए, आपको ऊपर दी गई keys.startCapture()अपनी keysवस्तु के साथ कॉल करना होगा । startCaptureगैर-अवरोधक है, और बस एक धागा शुरू होता है जो सिर्फ कुंजी प्रेस को रिकॉर्ड करता है, और उन प्रमुख प्रेस को संसाधित करने के लिए एक और धागा। यह सुनिश्चित करने के लिए दो धागे हैं कि मुख्य प्रेस को रिकॉर्ड करने वाला धागा किसी भी कुंजी को याद नहीं करता है।

यदि आप कैप्चरिंग कीज़ को रोकना चाहते हैं, तो आप कॉल कर सकते हैं keys.stopCapture()और यह कीज़ कैप्चरिंग को रोक देगा। हालाँकि, चूंकि एक कुंजी को कैप्चर करना एक ब्लॉकिंग ऑपरेशन है, इसलिए थ्रेड कैप्चरिंग कुंजी कॉल करने के बाद एक और कुंजी को पकड़ सकती है stopCapture()

इसे रोकने के लिए, आप एक वैकल्पिक पैरामीटर (ओं) को startCapture(functionName, args)एक फ़ंक्शन में पास कर सकते हैं जो कि चेक की तरह कुछ करता है यदि कुंजी 'c' के बराबर है और फिर बाहर निकलता है। यह महत्वपूर्ण है कि यह फ़ंक्शन पहले बहुत कम करता है, उदाहरण के लिए, यहां एक नींद हमें चाबियाँ याद करने का कारण बनेगी।

हालांकि, यदि stopCapture()इस फ़ंक्शन में कॉल किया जाता है , तो कुंजी कैप्चर को तुरंत बंद कर दिया जाएगा, बिना किसी और को पकड़ने की कोशिश किए, और यह कि सभी get()कॉल तुरंत वापस कर दी जाएंगी, अगर कोई चाबी अभी तक दबाया नहीं गया है।

इसके अलावा, पिछले दबाए गए सभी कुंजी को तब तक get()और getAsync()स्टोर करें (जब तक कि आप उन्हें पुनर्प्राप्त नहीं करते हैं), आप कॉल कर सकते हैं clearGetList()और clearAsyncList()पहले से दबाए गए कुंजी को भूल सकते हैं ।

ध्यान दें कि get(), getAsync()और ईवेंट स्वतंत्र हैं, इसलिए यदि कोई कुंजी दबाया जाता है: 1. get()उस पर एक कॉल प्रतीक्षा कर रहा है, हानिपूर्ण के साथ, इस कुंजी को वापस कर देगा। अन्य प्रतीक्षा कॉल (यदि कोई हो) प्रतीक्षा करना जारी रखेगी। 2. उस कुंजी को गेट कीज़ की कतार में स्टोर किया जाएगा, ताकि get()हानिपूर्ण के साथ सबसे पुरानी कुंजी वापस आ जाए जिसे get()अभी तक वापस नहीं किया गया है। 3. सभी घटनाओं को उनके इनपुट के रूप में उस कुंजी के साथ निकाल दिया जाएगा। 4. उस कुंजी को कुंजी की सूची में संग्रहित किया जाएगा getAsync(), जहां उस लिस टवील को वापस किया जाएगा और अगली कॉल पर खाली सूची पर सेट किया जाएगा।getAsync()

यदि यह सब बहुत अधिक है, तो यहां एक उदाहरण उपयोग मामला है:

import keyPress
import time
import threading

def KeyPressed(k, printLock):
    printLock.acquire()
    print "Event: " + k
    printLock.release()
    time.sleep(4)
    printLock.acquire()
    print "Event after delay: " + k
    printLock.release()

def GetKeyBlocking(keys, printLock):    
    while keys.capturing():
        keyReceived = keys.get()
        time.sleep(1)
        printLock.acquire()
        if not keyReceived is None:
            print "Block " + keyReceived
        else:
            print "Block None"
        printLock.release()

def GetKeyBlockingLossy(keys, printLock):   
    while keys.capturing():
        keyReceived = keys.get(lossy=True)
        time.sleep(1)
        printLock.acquire()
        if not keyReceived is None:
            print "Lossy: " + keyReceived
        else:
            print "Lossy: None"
        printLock.release()

def CheckToClose(k, (keys, printLock)):
    printLock.acquire()
    print "Close: " + k
    printLock.release()
    if k == "c":
        keys.stopCapture()

printLock = threading.Lock()

print "Press a key:"
print "You pressed: " + keyPress.getKey()
print ""

keys = keyPress.KeyCapture()

keys.addEvent(KeyPressed, printLock)



print "Starting capture"

keys.startCapture(CheckToClose, (keys, printLock))

getKeyBlockingThread = threading.Thread(target=GetKeyBlocking, args=(keys, printLock))
getKeyBlockingThread.daemon = True
getKeyBlockingThread.start()


getKeyBlockingThreadLossy = threading.Thread(target=GetKeyBlockingLossy, args=(keys, printLock))
getKeyBlockingThreadLossy.daemon = True
getKeyBlockingThreadLossy.start()

while keys.capturing():
    keysPressed = keys.getAsync()
    printLock.acquire()
    if keysPressed != []:
        print "Async: " + str(keysPressed)
    printLock.release()
    time.sleep(1)

print "done capturing"

यह मेरे द्वारा किए गए साधारण परीक्षण से मेरे लिए अच्छी तरह से काम कर रहा है, लेकिन मैं खुशी से दूसरों की प्रतिक्रिया ले लूंगा, अगर मुझे कुछ याद है।

मैंने इसे यहां पोस्ट भी किया।


3

कॉर्क मोड में वर्णित अन्य उत्तरों में से एक में टिप्पणी, जो यूनिक्स कार्यान्वयन के लिए महत्वपूर्ण है क्योंकि आप आम तौर पर नहीं चाहते हैं ^ सी ( KeyboardError) गेटचार द्वारा भस्म हो जाए (जैसा कि जब आप टर्मिनल को कच्चे मोड पर सेट करेंगे, जैसा कि किया गया है) अधिकांश अन्य उत्तर)।

एक और महत्वपूर्ण विवरण यह है कि यदि आप एक पढ़ना चाहते हैं वर्ण और एक बाइट नहीं पढ़ना चाहते हैं, तो आपको इनपुट स्ट्रीम से 4 बाइट्स पढ़ने चाहिए, क्योंकि एक एकल वर्ण की अधिकतम संख्या यूटीएफ -8 (पायथन 3+) से युक्त होगी )। केवल एक बाइट को पढ़ने से की-पैड तीर जैसे मल्टी-बाइट वर्णों के लिए अप्रत्याशित परिणाम प्राप्त होंगे।

यहाँ यूनिक्स के लिए मेरा बदला हुआ कार्यान्वयन है:

import contextlib
import os
import sys
import termios
import tty


_MAX_CHARACTER_BYTE_LENGTH = 4


@contextlib.contextmanager
def _tty_reset(file_descriptor):
    """
    A context manager that saves the tty flags of a file descriptor upon
    entering and restores them upon exiting.
    """
    old_settings = termios.tcgetattr(file_descriptor)
    try:
        yield
    finally:
        termios.tcsetattr(file_descriptor, termios.TCSADRAIN, old_settings)


def get_character(file=sys.stdin):
    """
    Read a single character from the given input stream (defaults to sys.stdin).
    """
    file_descriptor = file.fileno()
    with _tty_reset(file_descriptor):
        tty.setcbreak(file_descriptor)
        return os.read(file_descriptor, _MAX_CHARACTER_BYTE_LENGTH)

2

Pygame के साथ यह कोशिश करें:

import pygame
pygame.init()             // eliminate error, pygame.error: video system not initialized
keys = pygame.key.get_pressed()

if keys[pygame.K_SPACE]:
    d = "space key"

print "You pressed the", d, "."

यह एक साफ विचार है, लेकिन यह कमांड लाइन पर काम नहीं करता है: pygame.error: video system not initialized
dirkjot

2

ActiveState की रेसिपी में "पॉज़िक्स" सिस्टम के लिए थोड़ा बग शामिल है जो Ctrl-Cबाधित होने से रोकता है (मैं मैक का उपयोग कर रहा हूं)। अगर मैं अपनी स्क्रिप्ट में निम्नलिखित कोड डालूँ:

while(True):
    print(getch())

मैं स्क्रिप्ट को कभी समाप्त नहीं कर पाऊंगा Ctrl-Cऔर मुझे बचने के लिए अपने टर्मिनल को मारना होगा।

मेरा मानना ​​है कि निम्नलिखित लाइन का कारण है, और यह भी क्रूर है:

tty.setraw(sys.stdin.fileno())

उस से Asides, पैकेज ttyवास्तव में जरूरत नहीं है, termiosइसे संभालने के लिए पर्याप्त है।

नीचे बेहतर कोड है जो मेरे लिए काम करता है ( Ctrl-Cबाधित करेगा), अतिरिक्त getcheफ़ंक्शन के साथ जो आपके द्वारा टाइप किए गए चारो को गूँजता है:

if sys.platform == 'win32':
    import msvcrt
    getch = msvcrt.getch
    getche = msvcrt.getche
else:
    import sys
    import termios
    def __gen_ch_getter(echo):
        def __fun():
            fd = sys.stdin.fileno()
            oldattr = termios.tcgetattr(fd)
            newattr = oldattr[:]
            try:
                if echo:
                    # disable ctrl character printing, otherwise, backspace will be printed as "^?"
                    lflag = ~(termios.ICANON | termios.ECHOCTL)
                else:
                    lflag = ~(termios.ICANON | termios.ECHO)
                newattr[3] &= lflag
                termios.tcsetattr(fd, termios.TCSADRAIN, newattr)
                ch = sys.stdin.read(1)
                if echo and ord(ch) == 127: # backspace
                    # emulate backspace erasing
                    # https://stackoverflow.com/a/47962872/404271
                    sys.stdout.write('\b \b')
            finally:
                termios.tcsetattr(fd, termios.TCSADRAIN, oldattr)
            return ch
        return __fun
    getch = __gen_ch_getter(False)
    getche = __gen_ch_getter(True)

संदर्भ:


1

cursesअजगर में पैकेज बस कुछ बयानों के साथ टर्मिनल से चरित्र इनपुट के लिए "कच्चे" मोड में प्रवेश करने के लिए इस्तेमाल किया जा सकता है। आउटपुट के लिए पर्दे का मुख्य उपयोग स्क्रीन पर करना है, जो कि आप नहीं चाहते हैं। इस कोड स्निपेट के print()बजाय बयानों का उपयोग किया जाता है, जो प्रयोग करने योग्य हैं, लेकिन आपको इस बात की जानकारी होनी चाहिए कि शाप आउटपुट से जुड़े लाइन एंडिंग्स को कैसे बदलता है।

#!/usr/bin/python3
# Demo of single char terminal input in raw mode with the curses package.
import sys, curses

def run_one_char(dummy):
    'Run until a carriage return is entered'
    char = ' '
    print('Welcome to curses', flush=True)
    while ord(char) != 13:
        char = one_char()

def one_char():
    'Read one character from the keyboard'
    print('\r? ', flush= True, end = '')

    ## A blocking single char read in raw mode. 
    char = sys.stdin.read(1)
    print('You entered %s\r' % char)
    return char

## Must init curses before calling any functions
curses.initscr()
## To make sure the terminal returns to its initial settings,
## and to set raw mode and guarantee cleanup on exit. 
curses.wrapper(run_one_char)
print('Curses be gone!')

1

अगर मैं कुछ जटिल कर रहा हूँ तो मैं कुंजियों को पढ़ने के लिए उपयोग करूँगा। लेकिन बहुत बार मैं सिर्फ एक साधारण पायथन 3 स्क्रिप्ट चाहता हूं जो मानक पुस्तकालय का उपयोग करता है और तीर कुंजी पढ़ सकता है, इसलिए मैं ऐसा करता हूं:

import sys, termios, tty

key_Enter = 13
key_Esc = 27
key_Up = '\033[A'
key_Dn = '\033[B'
key_Rt = '\033[C'
key_Lt = '\033[D'

fdInput = sys.stdin.fileno()
termAttr = termios.tcgetattr(0)

def getch():
    tty.setraw(fdInput)
    ch = sys.stdin.buffer.raw.read(4).decode(sys.stdin.encoding)
    if len(ch) == 1:
        if ord(ch) < 32 or ord(ch) > 126:
            ch = ord(ch)
    elif ord(ch[0]) == 27:
        ch = '\033' + ch[1:]
    termios.tcsetattr(fdInput, termios.TCSADRAIN, termAttr)
    return ch

0

Python3 के लिए मेरा समाधान, किसी भी पाइप पैकेज के आधार पर नहीं।

# precondition: import tty, sys
def query_yes_no(question, default=True):
    """
    Ask the user a yes/no question.
    Returns immediately upon reading one-char answer.
    Accepts multiple language characters for yes/no.
    """
    if not sys.stdin.isatty():
        return default
    if default:
        prompt = "[Y/n]?"
        other_answers = "n"
    else:
        prompt = "[y/N]?"
        other_answers = "yjosiá"

    print(question,prompt,flush= True,end=" ")
    oldttysettings = tty.tcgetattr(sys.stdin.fileno())
    try:
        tty.setraw(sys.stdin.fileno())
        return not sys.stdin.read(1).lower() in other_answers
    except:
        return default
    finally:
        tty.tcsetattr(sys.stdin.fileno(), tty.TCSADRAIN , oldttysettings)
        sys.stdout.write("\r\n")
        tty.tcdrain(sys.stdin.fileno())

0

मेरा मानना ​​है कि यह सबसे सुरुचिपूर्ण समाधान है।

import os

if os.name == 'nt':
    import msvcrt
    def getch():
        return msvcrt.getch().decode()
else:
    import sys, tty, termios
    fd = sys.stdin.fileno()
    old_settings = termios.tcgetattr(fd)
    def getch():
        try:
            tty.setraw(sys.stdin.fileno())
            ch = sys.stdin.read(1)
        finally:
            termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
        return ch

और फिर कोड में इसका उपयोग करें:

if getch() == chr(ESC_ASCII_VALUE):
    print("ESC!")

0

स्वीकार किए गए उत्तर ने मेरे लिए अच्छा प्रदर्शन नहीं किया (मैं एक कुंजी रखता हूं, कुछ भी नहीं होगा, फिर मैं एक और कुंजी दबाऊंगा और यह काम करेगा)।

शाप मॉड्यूल के बारे में जानने के बाद , यह वास्तव में जाने का सही तरीका लगता है। और यह अब विंडोज के लिए विंडोज़-कर्सर (पाइप के माध्यम से उपलब्ध) के माध्यम से उपलब्ध है, इसलिए आप एक मंच अज्ञेय तरीके से प्रोग्राम कर सकते हैं। यहां YouTube पर इस अच्छे ट्यूटोरियल से प्रेरित एक उदाहरण दिया गया है:

import curses                                                                                                                                       
def getkey(stdscr):
    curses.curs_set(0)
    while True:
        key = stdscr.getch()
        if key != -1:
            break
    return key

if __name__ == "__main__":
    print(curses.wrapper(getkey))

इसे .pyएक्सटेंशन के साथ सहेजें , या curses.wrapper(getkey)इंटरैक्टिव मोड में चलाएं ।


0

यहां उत्तर दिया गया: कच्चे_इनपुट में अजगर बिना किसी दबाव के प्रवेश करता है

इस कोड का उपयोग करें-

from tkinter import Tk, Frame


def __set_key(e, root):
    """
    e - event with attribute 'char', the released key
    """
    global key_pressed
    if e.char:
        key_pressed = e.char
        root.destroy()


def get_key(msg="Press any key ...", time_to_sleep=3):
    """
    msg - set to empty string if you don't want to print anything
    time_to_sleep - default 3 seconds
    """
    global key_pressed
    if msg:
        print(msg)
    key_pressed = None
    root = Tk()
    root.overrideredirect(True)
    frame = Frame(root, width=0, height=0)
    frame.bind("<KeyRelease>", lambda f: __set_key(f, root))
    frame.pack()
    root.focus_set()
    frame.focus_set()
    frame.focus_force()  # doesn't work in a while loop without it
    root.after(time_to_sleep * 1000, func=root.destroy)
    root.mainloop()
    root = None  # just in case
    return key_pressed


def __main():
        c = None
        while not c:
                c = get_key("Choose your weapon ... ", 2)
        print(c)

if __name__ == "__main__":
    __main()

संदर्भ: https://github.com/unfor19/mg-tools/blob/master/mgtools/get_key_pp.py


0

यदि आप केवल एक ही कुंजी प्रेस को पंजीकृत करना चाहते हैं, भले ही उपयोगकर्ता इसे एक से अधिक बार दबाए या कुंजी को अधिक समय तक दबाए रखे। कई दबाए गए इनपुट से बचने के लिए लूप का उपयोग करें और इसे पास करें।

import keyboard

while(True):
  if(keyboard.is_pressed('w')):
      s+=1
      while(keyboard.is_pressed('w')):
        pass
  if(keyboard.is_pressed('s')):
      s-=1
      while(keyboard.is_pressed('s')):
        pass
  print(s)

0

यदि आप केवल स्क्रीन को पकड़ना चाहते हैं तो आप टर्मिनल पर परिणाम लिख सकते हैं

input()

कोड के अंत में और यह स्क्रीन को होल्ड करेगा


-1

बिल्ड-इन raw_input को मदद करनी चाहिए।

for i in range(3):
    print ("So much work to do!")
k = raw_input("Press any key to continue...")
print ("Ok, back to work.")

6
raw_input कुंजी दर्ज इंतज़ार कर रहा है
VAC
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.