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

  

最新文章

  1. BZOJ 1212: [HNOI2004]L语言 [AC自动机 DP]
  2. [linux]ssh(转载)
  3. socket - socketserver - start TCP server
  4. NGUI Label Color Code
  5. OpenCV(5) 对比度和亮度
  6. 【Struts2学习笔记-4】包含其他配置文件
  7. sql查询数据库中所有表的记录条数,以及占用磁盘空间大小。
  8. LeetCode Invert Binary Tree 反转二叉树
  9. oracle 主键应用序列和触发器实现自动增长
  10. 简述Linq中.ToList(), .AsEnumerable(), AsQueryable()的区别和用法
  11. zoj 3822 Domination (可能性DP)
  12. Mahout推荐算法ItemBased
  13. 【朝花夕拾】朝花夕拾-Robot Framework实战演练之开篇
  14. python入门(9)字符串和编码
  15. web攻击和防御措施
  16. Reactjs组件中的方法为什么绑定this?
  17. k8s通过service访问pod(五)--技术流ken
  18. 修改和查询sqlserver里面的xml 好像只能一个个改不能批量
  19. 网关绑定命令,解决arp攻击
  20. 十年阿里java架构师的六大设计原则和项目经验

热门文章

  1. Part4_lesson1---Bootloader设计蓝图
  2. AIO和NIO的理解
  3. Oracle——单行函数
  4. SpringMVC——处理数据模型
  5. Monkey压力测试Android常见的错误类型及黑白名单的使用方法
  6. C# 关于接口与基类的理解(二者的区别)
  7. Java String对象面试题分析
  8. BZOJ 3083 遥远的国度(树链剖分+LCA)
  9. POJ1062 昂贵的聘礼(带限制的spfa)
  10. DFS小题