代码改变世界

随笔分类 -  python

初识python之 APP store排行榜 蜘蛛抓取(三) ---多线程版

2015-01-05 01:07 by etodream, 613 阅读, 收藏,
摘要: #coding=utf-8import timeimport urllib2import Queueimport threadingimport xml.dom.minidomimport MySQLdb#获取数据def get_appstop_data(url): myurl = url ... 阅读全文

初识python之 APP store排行榜 蜘蛛抓取(二)

2014-08-26 18:10 by etodream, 2153 阅读, 收藏,
摘要: #-*- coding: utf-8 -*-import urllib2import urllibimport reimport timeimport MySQLdbimport time,datetime#from datetime import date#----------- APP stor... 阅读全文

初识python之 APP store排行榜 蜘蛛抓取(一)

2014-08-17 20:49 by etodream, 1192 阅读, 收藏,
摘要: 直接上干货!!采用python 2.7.5-windows打开http://www.apple.com/cn/itunes/charts/free-apps/如上图可以见采用的是utf-8 编码 经过一番思想斗争 编码如下 (拍砖别打脸)#coding=utf-8import urllib2 ... 阅读全文