ホームページ > バックエンド開発 > Python チュートリアル > Python でノンブロッキングのコンソール入力を実装するにはどうすればよいですか?

Python でノンブロッキングのコンソール入力を実装するにはどうすればよいですか?

DDD
リリース: 2024-12-01 18:00:18
オリジナル
959 人が閲覧しました

How to Implement Non-Blocking Console Input in Python?

ノンブロッキング コンソール入力

ノンブロッキング コンソール入力は、ユーザーとの同時対話や継続的な処理が必要なアプリケーションでは非常に重要です。この場合の目標は、この機能を Python IRC クライアントに実装することです。

Windows でのノンブロッキング入力

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

Linux では、select、tty、および 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':
                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
ログイン後にコピー

これらのメソッドを使用すると、Python アプリケーションにノンブロッキングのコンソール入力を実装でき、ユーザー入力にリアルタイムで応答しながら継続的な処理が可能になります。

以上がPython でノンブロッキングのコンソール入力を実装するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート