
Python
chenaaron
a simple programmer
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python,wonderful language
Python,a good dynamic language,generally used in testing,science calculation and web development. An elegant project for python in web development,Django an open-source web framework. Will update some...2007-04-05 17:42:26 · 106 阅读 · 0 评论 -
Make python code to exe file
1. Download and install py2exe from the py2exe website (make sure you download the right version!) 2. Create a directory on you hardisk called mycode ... - Right click on the Windows Desktop and sele...2007-05-11 13:36:24 · 121 阅读 · 0 评论 -
Python2.4 Apach2.2 Mod_python
Prerequsitation: 1.Apache v2.2.4 2.Python2.4 3.mod_python3.3.1 for apache2.2 and python2.4 Configure Steps: 1.Add below in the apache/conf/http.conf(first check the mod_python.so whether exists in a...2007-06-14 12:48:39 · 140 阅读 · 0 评论 -
Django development
Django integrated to mod_python 1.download django-0.9.6 2.uncompress then run: python setup.py install 3.Add the python/Scripts to env path 4.Add the .py to the PATHEXE So far,you can set up a project...2007-06-14 17:23:52 · 261 阅读 · 0 评论 -
Python decorator
#decorator def before(func): def wapper(*args): print "print before invoke foo function" func(*args) print "print after invoke foo function" return wapper @bef...原创 2011-11-03 22:31:07 · 127 阅读 · 0 评论