পাইথন ব্যবহারকারীর কাছ থেকে একটি একক অক্ষর পড়ে


260

ব্যবহারকারীর ইনপুট থেকে একটি একক অক্ষর পড়ার উপায় আছে? উদাহরণস্বরূপ, তারা টার্মিনালে একটি কী চাপলে এটি ফিরে আসে (পছন্দ মতো getch())। আমি জানি এটির জন্য উইন্ডোজটিতে একটি ফাংশন রয়েছে তবে আমি এমন কিছু চাই যা ক্রস প্ল্যাটফর্ম।


1
উইন্ডোজগুলিতে আমি এই প্রশ্নের মতো একই সমস্যায় পড়েছি । সমাধান প্রতিস্থাপন করতে হয় msvcrt.getchসঙ্গে msvcrt.getwchসেখানে প্রস্তাব।
এ রায়

সমাধানটি হ'ল ইনস্টল করা গ্যাচ মডিউল "পিপ ইনস্টল গেটেচ"। পাইথন 2-এর জন্য "পিপ 2 ইনস্টল ফাইল.পিথনহোস্টড . org / প্যাকেজস / 56/ f7/… " কমান্ডটি ব্যবহার করুন । এই সমাধানটি টার্মাক্স (অ্যান্ড্রয়েড) এও কাজ করে।
পেটর মাচ

উত্তর:


189

এখানে এমন একটি সাইটের লিঙ্ক রয়েছে যা বলছে আপনি কীভাবে উইন্ডোজ, লিনাক্স এবং ওএসএক্সে একটি একক অক্ষর পড়তে পারেন: http://code.activestate.com/recips/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কিছুটা if-ਸਟੇਟমেন্টের মতো ব্যতিক্রমটি কীভাবে ব্যবহৃত হয় তা আমি পছন্দ করি না ; ওএস চেক করার জন্য প্ল্যাটফর্ম.সিস্টেম () কে কল করবেন না কেন?
Seismoid

10
@Seismoid: ক্ষমা চাওয়ার সাধারণত ভাল বিবেচনা করা হয়, দেখতে stackoverflow.com/questions/12265451/...
dirkjot

4
ওএস এক্সে কাজ করে না: "old_settings = termios.tcgetattr (fd)" "termios.error: (25, 'ডিভাইসের জন্য অনুপযুক্ত ioctl')"
নাম প্রকাশ করুন

79
sys.stdin.read(1)

মূলত এসটিডিএন থেকে 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/recines/134892/ থেকে নেওয়া )


33
আমার কাছে এটি অদ্ভুত মনে হয়েছে যে sys.stdin.read (1) একটি for n, LOL এর জন্য অপেক্ষা করে। জমা দেওয়ার জন্য ধন্যবাদ, যদিও।
ইভান ফসমার্ক

3
একটি চরিত্র নাকি এক বাইট? এটা এক নয়।
ক্রিস

4
@ ইভান, কারণ অজগরটি ডিফল্টরূপে লাইফ বাফার মোডে রয়েছে
জন লা রুই

3
@ ইভানফসমার্ক: এটি অগত্যা নয় যে sys.stdin.read (1) \ n এর জন্য অপেক্ষা করে, এটি আপনার প্রোগ্রামে অন্য অক্ষরগুলি প্রেরণের সময় সিদ্ধান্ত নেওয়া টার্মিনাল প্রোগ্রামগুলি '' n 'না দেখলে সেগুলি লিখবে না - অন্য কীভাবে হবে আপনি ব্যাকস্পেস টিপতে এবং আপনি যা টাইপ করছেন তা সংশোধন করতে সক্ষম হবেন? (এর গুরুতর উত্তর হ'ল - লাইন নিয়ন্ত্রণ বাস্তবায়নের জন্য অজগর প্রোগ্রামটি শিখান, একটি বাফার রাখুন, ব্যাকস্পেসগুলি প্রক্রিয়া করুন, তবে এটি একটি আলাদা বিশ্ব যা আপনি কেবল "একটি চরিত্র পড়তে" যখন কিনতে চান না, এবং আপনার লাইনটি তৈরি করতে পারে আপনার সিস্টেমে অন্য সমস্ত প্রোগ্রামের চেয়ে আলাদা হ্যান্ডলিং))
টনি ডেলরয়

2
@Seismoid EAFP
vaultah

70

অ্যাক্টিভেট রেসিপি দুটি উত্তরে ভারব্যাটিম উদ্ধৃত হয়েছে অতিরিক্ত ইঞ্জিনিয়ারড। এটি এ পর্যন্ত সিদ্ধ করা যেতে পারে:

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()

খুশী হলাম। তবে এটি কী-বোর্ড ইন্টারটার্ট (সিটিআরএল + সি) এর প্রথম চরটিও পড়বে এবং কোডটির সাথে প্রস্থান হওয়ার সম্ভাবনা রয়েছে 0
ব্যবহারকারী3342816

51

চেষ্টা করার মতো মূল্য হ'ল রিডচার লাইব্রেরি, যা অংশে অন্যান্য উত্তরে উল্লিখিত অ্যাক্টিস্টেট রেসিপিটির ভিত্তিতে রয়েছে।

স্থাপন:

pip install readchar

ব্যবহার:

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

পাইথন ২. Linux সহ উইন্ডোজ এবং লিনাক্সে পরীক্ষিত।

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 এর সাথেও কাজ করে। গেটের চেয়ে অনেক বেশি ভাল, কারণ কীচ (থ্রেড বা অ্যাসিনসিওর মাধ্যমে) অপেক্ষা করার সময় রিডচার প্রিন্টিংকে স্টডআউট করার অনুমতি দেয়।
পলিত

উইন 10 + পাইথন 3.5 ested এর উপর পরীক্ষা করা হয়েছে root এর ত্রুটি: মূল: '<স্ট্রিং>' তে স্ট্রিং বাম অপারেন্ড হিসাবে প্রয়োজন, বাইটস ট্রেসব্যাক নয় (সর্বশেষতম কল শেষ): ফাইল ".. \ মূল.পি", লাইন 184, মোড়কের ফলস্বরূপ = ফানক (* আরগস, ** কাওয়ার্গস) ফাইল "সি: it গিটহাব \ পাইথন-ডেমো \ ডেমো \ দিন_হেলো.পি", পংক্তি 41, রিড_ইগ প্রিন্টে (রিডচারার.ড্রেচার ()) ফাইল "সি: \ ব্যবহারকারীগণ ipcjs \ AppData \ স্থানীয় \ প্রোগ্রামস \ পাইথন \ পাইথন 35 \ lib \ সাইট-প্যাকেজগুলি \ রিডচার \ রিডচার_উইনডোস.পি ", লাইন 14, যখন '\ x00 \ xe0' তে সিচ করুন: টাইপ-এরর: '<স্ট্রিং>' তে স্ট্রিং বাম অপারেন্ড হিসাবে প্রয়োজন , বাইটস নয়
ipcjs

@ipcjs দয়া করে এই বাগটি রক্ষণাবেক্ষণকারীদের প্রতিবেদন করুন
মেলিহ ইল্ডেজ '

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

থেকে এই ব্লগ পোস্টে


আমার পক্ষে কাজ করে না বলে মনে হচ্ছে - কল করার সাথে সাথে খালি স্ট্রিং ফিরিয়ে দেয়। পাইথন ৩.6 সহ লিনাক্সে।
মেরেইন

1
@ মারেইন আপনি যদি এটি ব্লক করতে চান (ইনপুটটির জন্য অপেক্ষা করুন), অপসারণ করুন | os.O_NONBLOCK। অন্যথায়, আপনি এটিকে একটি লুপে রাখতে পারেন (ঘূর্ণন থেকে দূরে রাখতে কিছুক্ষণ ঘুমানোর ভাল ধারণা)।
ক্রিস গ্রেগ

পাইথনে, while Trueতখন ব্যবহার করা ভাল while 1
বেনামে

10

এই কোডটি এখানে ভিত্তি করে , 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

(বর্তমানে) শীর্ষস্থানীয় উত্তর (অ্যাক্টিভেট কোড সহ) অতিরিক্ত জটিল। ক্লাস ব্যবহার করার কোনও কারণ আমি দেখছি না যখন কোনও নিছক ফাংশনই যথেষ্ট হবে। নীচে দুটি বাস্তবায়ন যা একই জিনিসটি সম্পাদন করে তবে আরও পাঠযোগ্য কোড সহ।

এই দুটি বাস্তবায়ন:

  1. পাইথন 2 বা পাইথন 3 এ ঠিক কাজ করুন work
  2. উইন্ডোজ, ওএসএক্স এবং লিনাক্সে কাজ করুন
  3. মাত্র একটি বাইট পড়ুন (যেমন তারা কোনও নতুন লাইনের জন্য অপেক্ষা করেন না)
  4. কোনও বাহ্যিক গ্রন্থাগারের উপর নির্ভর করবেন না
  5. স্ব-অন্তর্ভুক্ত (ফাংশন সংজ্ঞার বাইরে কোনও কোড নেই)

সংস্করণ 1: পাঠযোগ্য এবং সহজ simple

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: বারবার আমদানি এবং ব্যতিক্রম হ্যান্ডলিং এড়ান:

[সম্পাদনা] অ্যাক্টিভেট কোডের একটি সুবিধা আমি মিস করেছি। আপনি যদি একাধিকবার অক্ষরগুলি পড়ার পরিকল্পনা করেন তবে সেই কোডটি উইন্ডোজ আমদানি পুনরুক্ত করার (ইউনিক্সের মতো সিস্টেমে আমদানি-এরর ব্যতিক্রম হ্যান্ডেলিং) ব্যয়টিকে এড়িয়ে চলে। যদিও আপনার সম্ভবত সেই नगण্য অপ্টিমাইজেশনের চেয়ে কোড পঠনযোগ্যতা সম্পর্কে আরও উদ্বিগ্ন হওয়া উচিত, এখানে একটি বিকল্প রয়েছে (এটি লুইয়ের উত্তরের সমান, তবে গেটচার () স্বনির্ভর) যা অ্যাক্টিস্টেট কোডের মতোই কাজ করে এবং আরও পঠনযোগ্য:

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

এটি কোনও প্রসঙ্গ পরিচালক হিসাবে ব্যবহারের ক্ষেত্রে হতে পারে। উইন্ডোজ ওএসের জন্য ভাতা বাদ দেওয়া, এখানে আমার পরামর্শ:

#!/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()

অথবা আপনি পাইপিআই থেকে গেচ মডিউলটি ব্যবহার করতে পারেন । তবে এটি লুপটি ব্লক করে দেবে


3

এটি নন-ব্লকিং, একটি কী পড়ে এবং এটি কীপ্রেস.কি-তে সঞ্চয় করে।

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

উত্তর এখানে তথ্যপূর্ণ ছিল, কিন্তু আমি এও পৃথক ঘটনা মূল প্রক্রিয়া বন্ধ অ্যাসিঙ্ক্রোনাস এবং অগ্নি মূল প্রক্রিয়া পেতে একটি উপায় চেয়েছিলেন, একটি থ্রেড-নিরাপদ, ক্রস-প্ল্যাটফর্ম ভাবে সব। পাইগেমটিও আমার পক্ষে খুব বেশি ফুলে উঠেছে। সুতরাং আমি নিম্নলিখিতটি তৈরি করেছি (পাইথন ২.7 এ তবে আমি সন্দেহ করি এটি সহজেই বহনযোগ্য), যা আমি অনুভব করেছি যে এটি অন্য কারও পক্ষে কার্যকর হলে আমি এখানে ভাগ করে নিই। আমি এটিকে কীপ্রেস.পিপি নামের একটি ফাইলে সংরক্ষণ করেছি।

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)একটি পরামিতি লাগে যে কোনও ফাংশন লাগে। তারপরে প্রতিবার কোনও কী টিপে গেলে, এই ইনপুট হিসাবে এই ফাংশনটিকে সেই কীটির স্ট্রিং দিয়ে ডাকা হবে। এগুলি একটি পৃথক থ্রেডে চালিত হয়, যাতে আপনি এগুলিতে যা চান তা ব্লক করতে পারেন এবং এটি কী-ক্যাপচারারের কার্যকারিতা বিঘ্নিত করবে না বা অন্যান্য ইভেন্টগুলিতে বিলম্ব করবে না।

get()আগের মতো একই ব্লক করে একটি কী প্রদান করে। এটি এখন এখানে প্রয়োজন কারণ কীগুলি KeyCaptureএখন অবজেক্টের মাধ্যমে ক্যাপচার করা হচ্ছে , সুতরাং keyPress.getKey()সেই আচরণের সাথে দ্বন্দ্ব হবে এবং উভয়ই কিছু কী মিস করবে কারণ একসাথে কেবল একটি চাবি ক্যাপচার করা যেতে পারে। এছাড়াও, বলুন যে ব্যবহারকারী 'ক' টিপুন, তারপরে 'বি', আপনি কল করেছেন get(), ব্যবহারকারী 'সি' টিপেন। সেই get()কলটি তত্ক্ষণাত 'ক' ফিরে আসবে, তারপরে আপনি যদি আবার কল করেন তবে এটি 'বি', তারপরে 'সি' ফিরে আসবে। আপনি যদি আবার কল করেন তবে এটি অন্য কী টিপ না দেওয়া অবধি বন্ধ হয়ে যাবে। এটি নিশ্চিত করে যে আপনি কোনও কীগুলি মিস করবেন না, যদি ইচ্ছা হয় তবে অবরুদ্ধ উপায়ে। সুতরাং এইভাবে এটি keyPress.getKey()আগের চেয়ে কিছুটা আলাদা

আপনি যদি getKey()পিছনের আচরণ চান তবে এটির get(lossy=True)মতো get(), এটি কেবলমাত্র কল করার পরে চাপানো কীগুলি দেয় get()। সুতরাং উপরের উদাহরণে, get()ব্যবহারকারী 'সি' চাপ না দেওয়া পর্যন্ত অবরুদ্ধ হবে এবং তারপরে আপনি যদি আবার কল করেন তবে এটি অন্য কী টিপ না দেওয়া অবধি ব্লক হয়ে যাবে।

getAsync()কিছুটা আলাদা এটি এমন কোনও কিছুর জন্য ডিজাইন করা হয়েছে যা প্রচুর প্রক্রিয়াজাতকরণ করে, তারপর মাঝে মাঝে ফিরে আসে এবং কোন কীগুলি চাপানো হয়েছিল তা পরীক্ষা করে। সুতরাং getAsync()সমস্ত কী শেষ কল থেকে চাপা একটি তালিকা ফেরৎ getAsync()প্রাচীনতম সাম্প্রতিকতম কী চাপা কী থেকে জন্য, চাপা। এটিও অবরুদ্ধ হয় না, এর অর্থ হ'ল শেষ কল করার পরে যদি কোনও কী চাপানো না হয় getAsync(), একটি খালি []ফিরে আসবে।

কীগুলি ক্যাপচার করতে শুরু করতে, আপনাকে উপরে তৈরি করা সামগ্রীর keys.startCapture()সাথে কল করতে হবে keysstartCaptureঅবরুদ্ধকরণ নয়, এবং কেবল এমন এক থ্রেড শুরু হয় যা কেবল কী টিপে রেকর্ড করে এবং সেই কী টিপুনগুলি প্রক্রিয়া করার জন্য অন্য থ্রেড। দু'টি থ্রেড রয়েছে তা নিশ্চিত করতে যে থ্রেডে কী টিপস রেকর্ড করে যে কোনও কী মিস করে না।

আপনি কীগুলি ক্যাপচারিং বন্ধ করতে চাইলে, আপনি কল করতে পারেন keys.stopCapture()এবং এটি কীগুলি ক্যাপচারিং বন্ধ করবে। যাইহোক, যেহেতু কীটি ক্যাপচার করা একটি ব্লকিং অপারেশন, থ্রেড ক্যাপচারিং কীগুলি কল করার পরে আরও একটি কী ক্যাপচার করতে পারে stopCapture()

এটি প্রতিরোধ করতে, আপনি startCapture(functionName, args)কোনও ফাংশনটির মধ্যে একটি alচ্ছিক প্যারামিটারগুলিতে প্রবেশ করতে পারেন যা কোনও চাবির মতো কিছু করে যদি কোনও কী 'সি' এর সমান হয় এবং তারপরে বাইরে চলে যায়। এটি গুরুত্বপূর্ণ যে এই ফাংশনটি খুব আগে করা উচিত, উদাহরণস্বরূপ, এখানে ঘুম আমাদের চাবিগুলি মিস করতে বাধ্য করবে।

যাইহোক, যদি stopCapture()এই ফাংশনটিতে ডাকা হয়, কী ক্যাপচারগুলি তত্ক্ষণাত বন্ধ করা হবে, আর কোনও ক্যাপচারের চেষ্টা না করে এবং সমস্ত get()কলগুলি তত্ক্ষণাত্ ফিরে আসবে, যদি কোনও কী টিপে না দেওয়া হয় তা না করেই None

এছাড়াও, পূর্ববর্তী সমস্ত কীগুলি চাপলে get()এবং getAsync()সংরক্ষণ করুন (যতক্ষণ না আপনি সেগুলি পুনরুদ্ধার করবেন), আপনি কল করতে পারেন clearGetList()এবং clearAsyncList()কীগুলি পূর্বে চাপানো হয়েছে তা ভুলে যেতে পারেন ।

মনে রাখবেন যে get(), getAsync()এবং ইভেন্টগুলি স্বতন্ত্র, সুতরাং যদি কোনও কী টিপানো হয়: ১. একটি কলটি get()অপেক্ষায় রয়েছে, ক্ষতির সাথে, কীটি ফিরে আসবে। অন্যান্য অপেক্ষার কলগুলি (যদি থাকে) অপেক্ষারত চলবে। ২. কীটি কীগুলি পাওয়ার কীগুলির কাতারে সংরক্ষণ করা হবে, যাতে get()ক্ষয়ক্ষতি বন্ধ হয়ে get()এখনও পুরানো চাবিটি ফিরে আসে না । ৩. সমস্ত ইভেন্টগুলি কীটি দিয়ে তাদের ইনপুট হিসাবে নিক্ষেপ করা হবে 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

অন্যান্য উত্তরগুলির মধ্যে একটিতে ক্রেব্রেক মোডের একটি মন্তব্যে মন্তব্য করা হয়েছে, যা ইউনিক্স বাস্তবায়নের জন্য গুরুত্বপূর্ণ কারণ আপনি সাধারণত চান না যে c সি ( 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

পাইগাম দিয়ে এটি ব্যবহার করে দেখুন:

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

অ্যাক্টিভেটের রেসিপিটিতে "পিক্সিক্স" সিস্টেমগুলির জন্য একটি ছোট বাগ রয়েছে যা Ctrl-Cব্যাঘাত থেকে বাধা দেয় (আমি ম্যাক ব্যবহার করছি)। আমি যদি আমার স্ক্রিপ্টে নিম্নলিখিত কোডগুলি রাখি:

while(True):
    print(getch())

আমি স্ক্রিপ্টটি দিয়ে কখনই শেষ করতে পারব না Ctrl-Cএবং পালাতে আমার টার্মিনালটি মেরে ফেলতে হবে।

আমি বিশ্বাস করি যে নিম্নলিখিত লাইনটি এর কারণ এবং এটি খুব নিষ্ঠুর:

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

এর বাইরে, প্যাকেজটি 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

পাইথন 3 এর জন্য আমার সমাধান, কোনও পাইপ প্যাকেজগুলির উপর নির্ভর করে না।

# 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

গৃহীত উত্তরটি আমার পক্ষে সেভাবে ভালভাবে সম্পাদিত হয়নি (আমি একটি চাবি রেখেছি, কিছুই হবে না, তারপরে আমি অন্য কী টিপবো এবং এটি কাজ করবে)।

অভিশাপগুলি মডিউল সম্পর্কে জানার পরে , এটি সত্যিই সঠিক পথে যাওয়ার মতো মনে হয়। এবং এটি এখন উইন্ডোজ-এর জন্য উইন্ডোজ -কার্সারগুলির মাধ্যমে উপলব্ধ ( পাইপের মাধ্যমে উপলব্ধ), যাতে আপনি প্ল্যাটফর্ম অজোনস্টিক পদ্ধতিতে প্রোগ্রাম করতে পারেন। ইউটিউবে এই সুন্দর টিউটোরিয়াল দ্বারা অনুপ্রাণিত একটি উদাহরণ এখানে :

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_pressed.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

বিল্ট-ইন কাঁচা_পিন্ডে সহায়তা করা উচিত।

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
কাঁচা ইনপুট প্রবেশ কীটির জন্য অপেক্ষা করছে
ভ্যাক
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.