首页 > 后端开发 > Python教程 > 如何在 Python 中使用 BlockingQueue 实现键盘处理程序?

如何在 Python 中使用 BlockingQueue 实现键盘处理程序?

Susan Sarandon
发布: 2024-10-30 12:47:02
原创
310 人浏览过

How to Implement a Keyboard Handler Using a BlockingQueue in Python?

实现键盘处理程序的最简单方法之一是使用 BlockingQueue 和一个线程,当按下键时会将键放入队列中,队列稍后会在代码中获取它。这是一个简单的实现:

<code class="python">import queue
import sys
import threading

# blocking
q = queue.Queue()
last_input = 0.0


def input_thread(q):
    global last_input
    while True:
        ch = sys.stdin.read(1)
        last_input = time.time()
        print("got key: '{}'".format(ch))
        q.put(ch)

if __name__ == '__main__':
    t = threading.Thread(target=input_thread, args=(q,))
    t.daemon = True
    t.start()

    last_input_time = last_input

    while True:
        if not q.empty() and (time.time() - last_input) < 5:
            print("polling '{}' in the queue".format(q.get()))

        if time.time() - last_input_time > 5:
            print("nothing in the queue for a while")
            raise RuntimeError("no input")</code>
登录后复制

以上是如何在 Python 中使用 BlockingQueue 实现键盘处理程序?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板