全部博文(921)
发布时间:2013-06-08 16:26:32
安装Psyco很简单,它有两种安装方式,一种是源码方式,一种是二进制码方式:如果用源码方式安装,你需在源码的目录中调用python setup.py install命令编译生成psyco子目录,再把该子目录整个拷贝到python的site-packages目录下。如果用二进制码方式安装,按这个网址列表中的py.........【阅读全文】
发布时间:2013-06-04 16:57:47
This is an example of a simple asynchronous Python web server using Twisted. This is a copy of Jp Calderone's Twisted Web in 60 seconds: handling POSTs example modified to accept a JSON payload in the POST request instead of form data. It also uses his Simple Python Web Server example to run t.........【阅读全文】
发布时间:2013-05-28 13:12:35
Twisted是一个功能极为强大的异步网络应用开发库——当然是Python的。印象中大概也就只有ACE有这么强悍,但Twisted在易用性方面要好很多——这其中当然少不了Python的功劳(ACE是用C++的)。但Python也有其缺点,其中之一就是因为GIL的存在使得用Python写多线程应用的意义不大,那么对于像Twisted这样基于Reactor模.........【阅读全文】
发布时间:2013-05-28 11:35:54
例如: 访问地址为:http://XXX.com?style=green<script language="javascript"> var getArgs = function (){var args = new Object( ); //声明一个空对象var query = window.location.search.substring(1); // 取查询字符串,如.........【阅读全文】
发布时间:2013-05-27 14:03:11
文章来自: http://blog.sina.com.cn/s/blog_6acdaf6d01014aoj.html# -*- coding: utf--8 -*-import timefrom twisted.internet import reactorfrom twisted.internet.protocol import ServerFactoryfrom twisted.protocols.basic import LineReceiver#from twisted.........【阅读全文】