发布时间:2013-05-06 13:59:56
使用gevent,可以对并发多个http请求的爬虫程序进行很好的优化, 缺点是,安装相对麻烦,这个包依赖于libevent,在windows下面用easy_install直接安装是不行的,必须用源代码包wget http://pypi.python.org/packages/source/g/gevent/gevent-0.13.8.tar.gztar zxvf gevent-0.13.8.tar.gzcd gevent.........【阅读全文】
发布时间:2013-04-11 16:31:33
flask sets up a redirect package called flask.ext where users should import the extensions from. If you for instance have a package called flask_something users would import it as flask.ext.something. This is done to transition from the old namespace packages. See Exten.........【阅读全文】
发布时间:2013-03-21 15:16:00
Python里类似PHP的htmlspecialchars()函数方法>>> import cgi >>> cgi.escape("<hello&goodbye>") '<hello&goodbye>'......【阅读全文】