上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页

2014年5月4日

一个奇怪的编码 big5-hkscs

摘要: # --*-- coding:utf-8 --*--import urllib2import urllibpostDict = { 'IsExist_Slt_Part_Id': 'False', 'IsExist_Slt_Stock_Id': 'False', 'current_p... 阅读全文

posted @ 2014-05-04 17:48 雨渐渐 阅读(727) 评论(0) 推荐(0) 编辑

python 重载 __hash__ __eq__

摘要: __author__ = 'root'from urlparse import urlparseclass host_news(): def __init__(self, id, url): self.id = id urlinfo = urlparse(url) ... 阅读全文

posted @ 2014-05-04 15:59 雨渐渐 阅读(1054) 评论(0) 推荐(0) 编辑

python 一致性hash

摘要: https://pypi.python.org/pypi/hash_ring/一致性 哈希 自己玩下 试试 阅读全文

posted @ 2014-05-04 15:43 雨渐渐 阅读(148) 评论(0) 推荐(0) 编辑

python is == 的区别

摘要: 要点: is 判断是否是同一个对象。是通过id来判断的 == 是通过值来判断的 为了提高内存利用率对一些简单的对象,如一些数值较小的int对象,python采用重用对象内存的方法例如指向a=2,b=2时,由于2作为简单的int类型且数值小,python不会两次为其分配内存,而是只分配一次,然后... 阅读全文

posted @ 2014-05-04 14:34 雨渐渐 阅读(266) 评论(0) 推荐(0) 编辑

python 遍历字典

摘要: dict={"a":"apple","b":"banana","o":"orange"} print "##########dict######################" for i in dict: print "dict[%s]=" % i,dict[i] print... 阅读全文

posted @ 2014-05-04 11:45 雨渐渐 阅读(283) 评论(0) 推荐(0) 编辑

二项分布

摘要: 1 二项分布N,P对分布的影响# --*-- coding:utf-8 --*--import distributionimport matplotlib.pyplot as pltfrom matplotlib.ticker import MultipleLocator# 二项分布举例:将一个硬币... 阅读全文

posted @ 2014-05-04 10:46 雨渐渐 阅读(414) 评论(0) 推荐(0) 编辑

hbase rowkey设计的注意事项

摘要: 1 充分利用有序性1.1 如果要scan操作,且不是很频繁,可以利用rowkey的有序性将需要一起扫描的数据放到一起。例如直接用时间戳。这样就可以按时间scan了。这个只要是简单的全表扫描都行。1.2 同样是scan,还可以利用rowkey的有序性实现数据本地化,设同一类别的数据需要一起扫描,那就可... 阅读全文

posted @ 2014-05-04 09:36 雨渐渐 阅读(889) 评论(0) 推荐(0) 编辑

2014年5月3日

分布律(离散型随机变量)

摘要: 阅读全文

posted @ 2014-05-03 22:25 雨渐渐 阅读(1930) 评论(0) 推荐(0) 编辑

python多线程 批量下补丁

摘要: 一个一个下载 要2个多小时。就直接起了个线程池。效果明显。import urllib2from urlparse import urlparseuri = 'http://******/patch****'d = urllib2.urlopen(uri)res = urlparse(uri)f = ... 阅读全文

posted @ 2014-05-03 14:18 雨渐渐 阅读(224) 评论(0) 推荐(0) 编辑

2014年4月29日

python url解析

摘要: >>> url="http://localhost/test.py?a=hello&b=world " >>> result=urlparse.urlparse(url) >>> result ParseResult(scheme='http', netloc=... 阅读全文

posted @ 2014-04-29 15:19 雨渐渐 阅读(336) 评论(0) 推荐(0) 编辑

上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页

导航