> 백엔드 개발 > 파이썬 튜토리얼 > 실시간 애플리케이션을 위해 Python에서 비차단 콘솔 입력을 어떻게 구현할 수 있습니까?

실시간 애플리케이션을 위해 Python에서 비차단 콘솔 입력을 어떻게 구현할 수 있습니까?

Susan Sarandon
풀어 주다: 2024-12-04 05:07:14
원래의
779명이 탐색했습니다.

How Can I Implement Non-Blocking Console Input in Python for Real-Time Applications?

비차단 콘솔 입력: 비동기 처리 잠금 해제

다음 시나리오를 고려해보세요. Python으로 IRC 클라이언트를 만들고 있고 서버로부터 데이터를 수신하고 분석하는 루프입니다. 그러나 raw_input을 사용하여 텍스트를 입력하면 입력이 완료될 때까지 루프가 갑자기 중단됩니다. 이러한 중단은 루프의 원활한 기능을 방해합니다.

이 문제를 해결하고 루프의 지속적인 실행을 유지하기 위해 다양한 비차단 입력 방법을 사용할 수 있습니다.

Windows의 경우(콘솔 전용) ):

  • msvcrt 활용 모듈:
import msvcrt

num = 0
done = False
while not done:
    print(num)
    num += 1

    if msvcrt.kbhit():
        print("you pressed", msvcrt.getch(), "so now I will quit")
        done = True
로그인 후 복사

Linux의 경우:

  • 이 문서에 설명된 대로 termios 모듈을 활용하세요.
import sys
import select
import tty
import termios

def isData():
    return select.select([sys.stdin], [], [], 0) == ([sys.stdin], [], [])

old_settings = termios.tcgetattr(sys.stdin)
try:
    tty.setcbreak(sys.stdin.fileno())

    i = 0
    while 1:
        print(i)
        i += 1

        if isData():
            c = sys.stdin.read(1)
            if c == '\x1b':         # x1b is ESC
                break

finally:
    termios.tcsetattr(sys.stdin, termios.TCSADRAIN, old_settings)
로그인 후 복사

크로스 플랫폼 또는 GUI용 통합:

  • Pygame 수용:
import pygame
from pygame.locals import *

def display(str):
    text = font.render(str, True, (255, 255, 255), (159, 182, 205))
    textRect = text.get_rect()
    textRect.centerx = screen.get_rect().centerx
    textRect.centery = screen.get_rect().centery

    screen.blit(text, textRect)
    pygame.display.update()

pygame.init()
screen = pygame.display.set_mode( (640,480) )
pygame.display.set_caption('Python numbers')
screen.fill((159, 182, 205))

font = pygame.font.Font(None, 17)

num = 0
done = False
while not done:
    display( str(num) )
    num += 1

    pygame.event.pump()
    keys = pygame.key.get_pressed()
    if keys[K_ESCAPE]:
        done = True
로그인 후 복사

이러한 비차단 입력 기술을 채택하면 작업을 방해하지 않고 실시간 사용자 상호 작용을 원활하게 통합할 수 있습니다. IRC 루프의 흐름.

위 내용은 실시간 애플리케이션을 위해 Python에서 비차단 콘솔 입력을 어떻게 구현할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿