全部博文(921)
发布时间:2013-11-13 13:58:36
利用httplib 以http发送post请求网上很多资料。https的处理方式,有所不同,弄不好,报480等错误。正确的处理方式,上代码:#HTTPS发送POST请求范例import httplibimport sslimport socketimport base64import simplejsontry: &.........【阅读全文】
发布时间:2013-11-12 17:47:43
Reids是一个比较高级的开源key-value存储系统,采用ANSI C实现。其与memcached类似,但是支持持久化数据存储入队操作:......【阅读全文】
发布时间:2013-11-11 17:11:53
很多场景,都需要异步回调机制。下面一个简单的例子。#!/usr/bin/env python# -*- coding: UTF-8 -*-import loggingimport queueimport threadingdef func_a(a, b): return a + b.........【阅读全文】
发布时间: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 .........【阅读全文】