码迷,mamicode.com
首页 > 其他好文 > 详细

爬虫:淘宝价格

时间:2017-06-22 10:05:13      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:start   out   div   format   nbsp   class   import   eva   arch   

 1 import requests
 2 import re
 3 
 4 def getHTMLText(url):
 5     try:
 6         r = requests.get(url, timeout = 30)
 7         r.raise_for_status()
 8         r.encoding = r.apparent_encoding
 9         return r.text
10     except:
11         return "error_1"
12 
13 def parsePage(ilt, html):
14     try:
15         plt = re.findall(r\"view_price\"\:\"[\d\.]*\", html)
16         tlt = re.findall(r\"raw_title\"\:\".*?\", html)
17         for i in range(len(plt)):
18             price = eval(plt[i].split(:)[1])
19             title = eval(tlt[i].split(:)[1])
20             ilt.append([price, title])
21     except:
22         print("error_2")
23 
24 def printGoodsList(ilt):
25     tplt = "{:4}\t{:8}\t{:16}"
26     print(tplt.format("序号", "价格", "商品名称"))
27     count = 0
28     for g in ilt:
29         count = count + 1
30         print(tplt.format(count, g[0], g[1]))
31 
32 def main():
33     goods = 书包
34     depth = 2
35     start_url = https://s.taobao.com/search?q= + goods
36     infoList = []
37     for i in range(depth):
38         try:
39             url = start_url + &s= + str(44*i)
40             html = getHTMLText(url)
41             parsePage(infoList, html)
42         except:
43             continue
44     printGoodsList(infoList)
45 
46 main()

 

爬虫:淘宝价格

标签:start   out   div   format   nbsp   class   import   eva   arch   

原文地址:http://www.cnblogs.com/dalanjing/p/7063051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!