Python可跨平台实现获取按键的方法


Posted in Python onMarch 05, 2015

本文实例讲述了Python可跨平台实现获取按键的方法。分享给大家供大家参考。具体如下:

class _Getch:  

    """Gets a single character from standard input.  Does not echo to the screen.""" 

    def __init__(self):  

        try:  

            self.impl = _GetchWindows()  

        except ImportError:  

            try:  

                self.impl = _GetchMacCarbon()  

            except AttributeError:  

                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)  

if __name__ == '__main__': # a little test  

   print 'Press a key' 

   inkey = _Getch()  

   import sys  

   for i in xrange(sys.maxint):  

      k=inkey()  

      if k<>'':break 

   print 'you pressed ',k

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
python实现linux下使用xcopy的方法
Jun 28 Python
python字符串连接方法分析
Apr 12 Python
Python的几个高级语法概念浅析(lambda表达式闭包装饰器)
May 28 Python
详解tensorflow训练自己的数据集实现CNN图像分类
Feb 07 Python
快速解决安装python没有scripts文件夹的问题
Apr 03 Python
对Pycharm创建py文件时自定义头部模板的方法详解
Feb 12 Python
关于Python作用域自学总结
Jun 10 Python
python+numpy按行求一个二维数组的最大值方法
Jul 09 Python
Python爬虫库requests获取响应内容、响应状态码、响应头
Jan 25 Python
使用python 计算百分位数实现数据分箱代码
Mar 03 Python
Python使用进程Process模块管理资源
Mar 05 Python
python小程序之飘落的银杏
Apr 17 Python
Python读取mp3中ID3信息的方法
Mar 05 #Python
Python查找相似单词的方法
Mar 05 #Python
Python兔子毒药问题实例分析
Mar 05 #Python
Python获取服务器信息的最简单实现方法
Mar 05 #Python
Python实现简单的可逆加密程序实例
Mar 05 #Python
Python装饰器的函数式编程详解
Feb 27 #Python
python分析nignx访问日志脚本分享
Feb 26 #Python
You might like
第二节--PHP5 的对象模型
2006/11/16 PHP
php adodb分页实现代码
2009/03/19 PHP
php打开文件fopen函数的使用说明
2013/07/05 PHP
eaglephp使用微信api接口开发微信框架
2014/01/09 PHP
php图片缩放实现方法
2014/02/20 PHP
php将日期格式转换成xx天前的格式
2015/04/16 PHP
JQuery中对服务器控件 DropdownList, RadioButtonList, CheckboxList的操作总结
2011/06/28 Javascript
jQuery 阴影插件代码分享
2012/01/09 Javascript
分析Node.js connect ECONNREFUSED错误
2013/04/09 Javascript
关于extjs4如何获取grid修改后的数据的问题
2013/08/07 Javascript
多种方法判断Javascript对象是否存在
2013/09/22 Javascript
自定义jquery模态窗口插件无法在顶层窗口显示问题
2014/05/29 Javascript
js数组去重的hash方法
2016/12/22 Javascript
基于Vue2.0+ElementUI实现表格翻页功能
2017/10/23 Javascript
react 应用多入口配置及实践总结
2018/10/17 Javascript
vue 项目@change多个参数传值多个事件的操作
2021/01/29 Vue.js
用Python实现QQ游戏大家来找茬辅助工具
2014/09/14 Python
python实现上传样本到virustotal并查询扫描信息的方法
2014/10/05 Python
在Python中执行系统命令的方法示例详解
2017/09/14 Python
python中使用正则表达式的后向搜索肯定模式(推荐)
2017/11/11 Python
python实现类之间的方法互相调用
2018/04/29 Python
python实现将文件夹下面的不是以py文件结尾的文件都过滤掉的方法
2018/10/21 Python
Python数据库小程序源代码
2019/09/15 Python
简单介绍django提供的加密算法
2019/12/18 Python
Pandas的Apply函数具体使用
2020/07/21 Python
python如何导出微信公众号文章方法详解
2020/08/31 Python
深入理解HTML5定时器requestAnimationFrame的使用
2018/12/12 HTML / CSS
使用html5实现表格实现标题合并的实例代码
2019/05/13 HTML / CSS
数据员岗位职责
2013/11/19 职场文书
李开复演讲稿
2014/05/24 职场文书
党员学习群众路线教育实践活动对照检查材料
2014/09/23 职场文书
2014年小学辅导员工作总结
2014/12/23 职场文书
财政局长个人总结
2015/03/04 职场文书
2015年预备党员自我评价
2015/03/04 职场文书
致创业您:正能量激励人心句子(48条)
2019/08/15 职场文书
快速学习Oracle触发器和游标
2021/06/30 Oracle