易截截图软件、单文件、免安装、纯绿色、仅160KB

UBUNTU10.04安装stackless python运行高性能服务器

以下"#"开头是Ubuntu终端命令
1。首先安装Ubuntu10.04
参考 http://wiki.ubuntu.org.cn/
2。修改root用户密码
3。使用root登陆系统
 
4。Ubuntu默认已经安装python2.6.5
 
5。下载stackless
查看网址 http://zope.stackless.com/download/sdocument_view
# cd /usr/src
# wget http://www.stackless.com/binaries/stackless-265-export.tar.bz2
# tar jxvf stackless-265-export.tar.bz2
 
6。预先安装一些模块依赖的开发库
6.1 要安装zlib的开发库,没有zip组件可跑不了easy_install
# apt-get install zlib1g-dev
6.2 要安装readline的开发包,Python需要他
# apt-get install libreadline5-dev
6.3  还有openssl, bdb和bzip2的开发包
# apt-get install libssl-dev
# apt-get install libdb-dev
# apt-get install libbz2-dev
6.4 安装编译工具
# apt-get install build-essential
 
7。编译python-2.6.5-stackless,安装到/opt目录
# cd /usr/src/python-2.6.5-stackless/
# ./configure --prefix=/opt/stackless --with-readline --with-zlib=/usr/include
# make
# make install
 
8。修改系统路径,现在可以在自己的PATH变量前面加上stackless的路径了,使stackless作为默认python
# export PATH=/opt/stackless/bin:"$PATH"
这句可以加到.profile或者.bash_profile里面,每次进入bash时就可以默认用stackless了
9。 现在装上easy_install,以后装python包就方便了
# cd /usr/src
# wget http://peak.telecommunity.com/dist/ez_setup.py
# python ez_setup.py
 
10。测试高性能网络开发框架
参考网址http://opensource.hyves.org/concurrence/
详细安装说明http://opensource.hyves.org/concurrence/install.html#install
 
 


相关文档:

用Python直接写UTF 8文本文件

当我们这样建立文件时
f =
file('x1.txt', 'w')
f.write(u'中文')
f.colse()

接结果应该是类似
    f.write(u'中文')
UnicodeEncodeError: 'ascii'
codec can't encode characters in position 0-16: ordinal not in
range(128)
要直接写 utf-8 文件怎么办呢?
import codecs
f = codecs. ......

python模块之codecs

python对多国语言的处理是支持的很好的,它可以处理现在任意编码的字符,这里深入的研究一下python对多种不同语言的处理。
    有一点需要清楚的是,当python要做编码转换的时候,会借助于内部的编码,转换过程是这样的:
        原有编码 -> 内部编码 ->
目 ......

python读取目录下文件并生成日志

很长的一段代码,但很清楚。哈哈。
import os
from time import strftime
stamp=strftime("%Y-%m-%d %H:%M:%S")
logfile = 'F:\\test\\m-php-framework\\tmp\logs\\error_report.log'
path = 'F:\\test\\'
files = os.listdir(path)
bytes = 0
numfiles = 0
for f in files:
if f.startswith('t'): ......

Python MySQLdb 查询返回字典结构


Python MySQLdb 查询返回字典结构 smallfish
MySQLdb默认查询结果都是返回tuple,输出时候不是很方便,必须按照0,1这样读取,无意中在网上找到简单的修改方法,就是传递一个cursors.DictCursor就行。
默认程序:
import MySQLdb
db = MySQLdb.connect(host = 'localhost', user = 'root', passwd = '123456', d ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号