
Python
yoshiyan
这个作者很懒,什么都没留下…
展开
-
P4提供的Pytohn接口资料
Perforce的Python API的下载链接:ftp://ftp.perforce.com/perforce/r09.2/bin.ntx86/p4python26.exeAPI 文档http://www.perforce.com/perforce/doc.current/manuals/p4script/03_python.html[color=red]如何获得worksp...原创 2010-08-14 05:53:00 · 548 阅读 · 0 评论 -
SQLAlchemy黄金体验
[color=red]session的生命期[/color][quote]Web Server Web Framework User-defined Controller Call-------------- -------------- ------------------------------web request ...2010-08-14 17:05:34 · 181 阅读 · 0 评论 -
Xlwt&Xlrd&Xlutils
[color=red]怎么新建Excel文件并把数据数据写进去?[/color][code="python"]from xlwt import Workbookif __name__ == "__main__": workbook = Workbook() sheet = workbook.add_sheet('Map') # 第一行,第一列 ...2010-09-01 10:00:10 · 196 阅读 · 0 评论 -
pyamf
[color=red]pyamf和Flex交互的简单例子[/color]Python端代码:image_service.py[code="python"]class ImageService(object): def sayHello(self): print "hello"[/code]server.py[code="python"]from ...2010-09-04 20:34:43 · 318 阅读 · 0 评论 -
Python笔记
Python Project StructurePython was conceived as a scripting language. Unlike compiled languages like C or Java, Python files are designed to be directly runnable. * RunMe.java -p someargum...原创 2012-02-04 06:17:11 · 147 阅读 · 0 评论 -
PyQT
[color=red]如何给QPushButton的click事件的响应函数传入参数?[/color]使用lambda,实例代码:[code="python"]buttonChangeSetting.clicked.connect(lambda : self.showRoleSettingDialog(unicode(treeItem.text(0)), unicode(treeIte...原创 2012-04-04 04:12:52 · 149 阅读 · 0 评论