全部博文(921)
发布时间: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.........【阅读全文】
发布时间:2013-10-10 14:28:27
1。 在找pycurl的使用方法时,对初次使用者,很困难,于是想写个简单的demo方便想涉足者使用:import pycurlimport StringIO url='www.baidu.com' c=pycurl.Curl() c.setopt(c.URL, url) b = StringIO.StringIO()&.........【阅读全文】