全部博文(921)
发布时间:2013-10-24 15:44:56
redis-py提供两个类Redis和StrictRedis用于实现Redis的命令,StrictRedis用于实现大部分官方的命令,并使用官方的语法和命令(比如,SET命令对应与StrictRedis.set方法)。Redis是StrictRedis的子类,用于向后兼容旧版本的redis-py。import redisr = redis.StrictRedis(host='127.0.0.1', port=9212.........【阅读全文】
发布时间:2013-10-23 17:01:11
Changing the portBy default, the runserver command starts the development server on the internal IP at port 8000.If you want to change the server's port, pass it as a command-line argument. For instance, this command starts the server on port 8080:python manage.py runserver .........【阅读全文】
发布时间:2013-10-22 17:10:54
目录(?)[-] 安装setuptools 制作自己的egg包 egg文件卸载 经常接触Python的同学可能会注意到,当需要安装第三方python包时,可能会用到easy_install命令。easy_install是由PEAK(Python Enterprise Application Kit)开发的setuptools包里带的一个命令,它用来安装egg包。egg包是目前最流行的pyth.........【阅读全文】
发布时间:2013-10-21 15:35:01
文章来自:http://blog.csdn.net/kevin6216/article/details/7573753用python实现调用接口的示例代码,过程涉及到很多的加密算法,值得分享一下。首先公钥和私钥如何生成,并且能兼容java平台,尝试了很多方法。最终决定用openssl命令前提,需要安装openssl,Crypto库生成公钥私钥对过程:生成私钥:openssl.........【阅读全文】