02 2016 档案

Python 用队列实现多线程并发
摘要:# Python queue队列,实现并发,在网站多线程推荐最后也一个例子,比这货简单,但是不够规范 # encoding: utf-8 __author__ = 'yeayee.com' # 由本站增加注释,可随意Fork、Copy from queue import Queue # Queue在 阅读全文

posted @ 2016-02-04 11:23 yeayee 阅读(7777) 评论(0) 推荐(0)

Python简单登录密码比对
摘要:# 源于Github的一段源码,编写的比较规范,应该是专业选手! # encoding:utf-8 __author__ = 'www.yeayee.com' # 由本站增加注释,可随意Fork、Copy import requests # 用来请求网络的模块 import hashlib # 用来 阅读全文

posted @ 2016-02-04 08:37 yeayee 阅读(905) 评论(0) 推荐(0)