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

リアルタイム アプリケーション用に Python でノンブロッキング コンソール入力を実装するにはどうすればよいですか?

Susan Sarandon
Susan Sarandonオリジナル
2024-12-04 05:07:14722ブラウズ

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

非ブロックのコンソール入力: 非同期処理のロックを解除する

次のシナリオを考えてみましょう: Python で IRC クライアントを作成しており、サーバーからデータを受信して​​分析するループ。ただし、raw_input を使用してテキストを入力すると、入力が完了するまでループが突然停止します。この中断により、ループのスムーズな機能が妨げられます。

この課題に取り組み、ループの継続的な実行を維持するために、さまざまなノンブロッキング入力メソッドが利用可能です。

Windows の場合 (コンソールのみ) ):

  • msvcrt を利用するmodule:
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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。