Python
naive1010
这个作者很懒,什么都没留下…
展开
-
py2.exe的用法
今天在网上找到了一个py2exe的工具可以把python的source 转成Windows下的可执行程序。下面就是这个过程。我安装的是Python2.3的版本。安装好后在你的%PYTHON23%/Lib/site-packages下会有的一个py2exe的目录,这里面这是这个第三方工具的所在了。里面的Samples 下有几个例子。本着从简单入手的原则,我研究了一下simple目录下的例子。最最主要原创 2004-10-18 08:38:00 · 2833 阅读 · 1 评论 -
10月份的MSDN Magazine中CLR Inside Out栏目是一篇关于IronPython的文章
这是文章的链接:http://msdn.microsoft.com/msdnmag/issues/06/10/CLRInsideOut/default.aspx在文章的最后引用了Aaron Marten的Blog,是关于IronPython与VS2005的集成(可惜不支持VS 2005 Express)。http://blogs.msdn.com/aaronmar/archive/2006/02/转载 2007-07-25 09:27:00 · 1052 阅读 · 0 评论 -
Python+wxWidgets快速开发桌面小程序
充分体验到知识循环再用的好处,原本对Python、wxWidgets没有接触的,天黑天亮之间,已经作了一个半成品的桌面程序出来。 1.选型 通常选型之后,都会迫切的告诉别人自认为正确的原因,这时候路过的人就比较不幸了。 我选Python和wxWidgets,是因为....... 因为是发布到网上的小程序,要它很小,Java和.Net这两个还算当红但要装虚拟机的笨家伙最先o原创 2005-11-22 12:31:00 · 7158 阅读 · 1 评论 -
统计指定目录下的文件的小程序
# this program use to list all files sort by time or size# sys.stderr "filelist.py [filename] [-time|-size]import os,sys,time def compsize(a,b): return cmp(a[1],b[1])def comptime(a,b): return cm原创 2005-10-27 09:35:00 · 1479 阅读 · 0 评论 -
List the UTC Time on a Computer
DescriptionReports the Universal Time Coordinate (UTC) time on a computer. This script was tested using Python 2.2.2-224 for Microsoft Windows, available from ActiveState. Supported PlatformsWindows S原创 2005-10-27 08:38:00 · 1538 阅读 · 0 评论 -
Use Jython to Write Ant Tasks
12131415161718192021222324252627282930 Mar2004 May2004A short article describing the steps to use Jython and Groovy to write custom Ant tasks. Syndication Comment Feed Contact mevar site原创 2005-09-29 13:48:00 · 1860 阅读 · 0 评论 -
Python爱好者的Blog
http://www.linuxforum.net/forum/showflat.php?Cat=&Board=python&Number=501282&page=0&view=collapsed&sb=9&o=&fpart=原创 2005-05-25 13:38:00 · 1887 阅读 · 0 评论 -
DBAttrib
Title: DBAttrib Submitter: j knapka (other recipes) Last Updated: 2002/01/07 Version no: 1.1 Category: Databases --Rate-- 5 - Excellent 4 - Very good 3 - Good 2 - Needs wo原创 2005-02-25 14:07:00 · 1050 阅读 · 0 评论 -
Python调用DLL问题请教
发信人: Insomnia (Garfield), 信区: Python标 题: Python调用DLL问题请教发信站: BBS 水木清华站 (Fri Aug 6 09:19:43 2004), 转信背景:Python 2.3.3, ctypes 0.9.0, Matlab R14目的:想采用Python作为“粘合剂”将已有的大量的MATLAB下的程序(*.m)通过图形GUI的原创 2005-02-21 08:17:00 · 2922 阅读 · 1 评论 -
Cheetah
Cheetah is a Python-powered template engine and code generator. It can be used as a standalone utility or it can be combined with other tools. Cheetah has many potential uses, but web develope原创 2005-02-25 13:30:00 · 1935 阅读 · 0 评论 -
Charming Python: Review of Python IDEs
Python development made (even) easierLevel: IntroductoryDavid Mertz, Ph.D. (mertz@gnosis.cx)Developer, Gold Software Systems11 Dec 2003David looks at four open source development environ原创 2004-11-30 08:27:00 · 1824 阅读 · 0 评论 -
可爱的 Python:Python 中的函数编程
尽管用户通常将 Python 看作是一个过程性和面向对象语言,但它实际上包含了实现完整函数编程所需的每样事物。本文讨论了函数编程的常规概念,并说明了在 Python 中实现函数技术的方法。我们最好从最难的问题开始:“到底什么是函数编程 (FP)?”一个答案可能会说 FP 就是您在使用例如 Lisp、Scheme、Haskell、ML、OCAML、Clean、Mercury、Erlang(或其它原创 2004-11-23 16:04:00 · 4627 阅读 · 1 评论 -
可爱的 Python:Python 中的 TK 编程
可爱的 Python:Python 中的 TK 编程给使用 Python GUI 库的初学者的提示 David Mertz 博士Gnosis Software, Inc. 总裁2000 年 12 月内容:TK 简要描述从测试应用程序开始学习基本知识main() 函数应用几何图原创 2004-11-23 13:06:00 · 7275 阅读 · 3 评论 -
可爱的 Python:Python 中的文本处理
与其它几种流行的脚本语言一样,Python 是一种用于浏览和处理文本数据的优秀工具。本文为 Python 的初学者概述了 Python 的文本处理工具。文章说明了规则表达式的一些常规概念,并提供了处理文本时,什么情况下应使用(或不使用)规则表达式的建议。什么是 Python?Python 是由 Guido van Rossum 开发的、可免费获得的、非常高级的解释型语言。其语法简单易懂,而其面原创 2004-11-23 13:08:00 · 2748 阅读 · 0 评论 -
可爱的 Python:Curses 编程
某一类 Python 应用程序最好使用交互式用户界面,这样可以消除图形环境的系统开销或复杂性。交互式文本模式程序(在 Linux/UNIX 中),例如封装在 Python 的标准 curses 模块中的ncurses 库,正是您所需要的。本文中,David Mertz 讨论了在 Python 中 curses 的用法。他使用从前端到 Txt2Html 程序的样本源代码阐述了 curses 环境。原创 2004-11-23 13:05:00 · 3048 阅读 · 1 评论 -
Text Processing in Python
http://www.gnosis.cx/TPiP/原创 2004-10-27 08:12:00 · 1147 阅读 · 0 评论 -
IronPython cookbook WebSite
今天在网上找到一个Blog For IronPYthon的WebSite原创 2007-06-12 12:49:00 · 1208 阅读 · 0 评论