全部博文(921)
发布时间:2015-08-27 12:07:34
当有人问你昨天是几号,是很容易就得到答案的<br /><br /><br />但当要计算出100天前是几号,就不那么容易得出了<br /><br /><br />而Python中datetime的timedelta则可以轻松完成计算<br /><br /><br />例如:<br />import datetime<br />(datetime.datetime.now() - datetime.timedelta(days = 100)).strftime(.........【阅读全文】
发布时间:2015-08-21 11:15:00
<div style="color:#323E32;font-family:simsun;font-size:14px;line-height:21px;white-space:normal;background-color:#E1E1E1;">原文<a href="http://blog.sina.com.cn/s/blog_b09d460201018o0v.html" target="_blank">链接</a><br /><br />##########################</div><div style="color:#323E32;font-famil.........【阅读全文】
发布时间:2015-08-19 19:45:09
在开发中 遇到了twisted web中实现了异步的情况,按照通常的方法,行不通,查了下资料。正确的做法如下:
Here is an example with resources adapted from the AbeFettig example on page 48 of "Twisted NetworkProgramming Essentials." I am still getting my feetwet with .........【阅读全文】
发布时间:2015-08-12 10:12:19
<p style="color:#333333;font-family:Arial;font-size:14px;line-height:26px;white-space:normal;background-color:#FFFFFF;">Python标准模块中,有多个模块用于数据的压缩与解压缩,如zipfile,gzip, bz2等等。上次介绍了zipfile模块,今天就来讲讲zlib模块。</p><h4 style="margin:0px;padding:0px;color:#333333;f.........【阅读全文】
发布时间:2015-08-05 13:58:10
wget https://bitbucket.org/pypy/pypy/downloads/pypy-1.9-linux64.tar.bz2tar -jxvf pypy-1.9-linux64.tar.bz2mv pypy-1.9 /usr/local/pypyln -s /usr/local/pypy/bin/pypy /usr/bin/pypy [root@openstack ~]# pypy pypy: error while loading shared libraries: libbz2.so.1.0: cannot open shared object f......【阅读全文】