- 授权协议: 未知
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://fedorahosted.org/director/
- 软件文档: http://packages.python.org/director/index.html
软件介绍
Director 是一个Python的类库用来开发命令行工具的插件,利用它可以很方便的添加新的功能。
下面是一个简单的例子:
#!/usr/bin/env python
import exceptions
import sys
from director import ActionRunner
from director.filter import ExceptionFilter
from director.filter import Filter
if __name__ == '__main__':
# Create and use exception filters
# Note you don't have to use filters. If you don't pass filter in
# to ActionRunner.run filters won't be used.
filter = Filter()
filter.register_filter(ExceptionFilter(exceptions.IOError, "TEST %s"))
filter.register_filter(ExceptionFilter(exceptions.TypeError, "NO! %s"))
# 'actions.package' is the package that holds the allowed plugin actions
ar = ActionRunner(sys.argv, 'actions.package')
ar.run(filter)
计算机组成:结构化方法
坦嫩鲍姆 / 刘卫东 / 人民邮电出版社 / 2006-1 / 65.00元
本书采用结构化方法来介绍计算机系统,书的内容完全建立在“计算机是由层次结构组成的,每层完成规定的功能”这一概念之上。作者对本版进行了彻底的更新,以反映当今最重要的计算机技术以及计算机组成和体系结构方面的最新进展。书中详细讨论了数字逻辑层、微体系结构层、指令系统层、操作系统层和汇编语言层,并涵盖了并行体系结构的内容,而且每一章结尾都配有丰富的习题。 本书适合作为计算机专业本科生计算机组......一起来看看 《计算机组成:结构化方法》 这本书的介绍吧!
