码迷,mamicode.com
首页 > 编程语言 > 详细

python3 爬淘女郎

时间:2018-01-21 00:02:38      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:man   简单   etl   cep   xtend   []   python   col   img   

刚学到python 组合数据类型这里,机缘巧合之下得到了一个公开课的视频,也看了前辈写的,取其精华,去其糟粕的爬了一下:

import urllib
from urllib import request
from json import loads
import re
import os
import pymssql
# sql server 数据库
class DB:

def __init__(self,host,user,password,database,charset):
self.conn = pymssql.connect(host=host, user=user, password=password, database=database, charset=charset)
self.cur = self.conn.cursor()

# 操作
def operateDB(self,sql):
if not self.cur:
print(‘连接失败‘)
else:
self.cur.execute(sql)
self.conn.commit()

# 关闭
def close(self):
self.cur.close()
self.conn.close()
# 发起请求
def getRequestBody(url):
return urllib.request.urlopen(url).read().decode(‘gbk‘)
# 删除字符串中不要的字符
def setStrLegal(body,son):
start_index = body.find(son)
end_index = body.find(son) + len(son)
return body[:start_index] + body[end_index:]
# 获得page页的所有模特信息,封装在字典中
def getShowInfoList(page):
# 页码请求的url
url = ‘https://mm.taobao.com/tstar/search/tstar_model.do?_input_charset=utf-8&currentPage={}‘.format(page)
body = getRequestBody(url)
dicts = loads(body)
print(dicts[‘data‘][‘searchDOList‘])
return dicts
# 获取模特的信息
def getInfo(userId):
# 每个模特的模特卡的url
url = ‘https://mm.taobao.com/self/info/model_info_show.htm?user_id={}‘.format(userId)
body = getRequestBody(url).strip()
reg = r‘<span>(.*?)</span>‘
list_re = re.findall(reg, body)
list_re[1] = setStrLegal(list_re[1],‘&nbsp;‘).strip()
# 处理错误信息
if len(list_re)-1 >= 8:
list_re.pop()
if len(list_re)-1 < 7:
list_re.append(‘‘)
if list_re[4] == ‘‘:
list_re[4] = list_re[4].replace(‘‘,‘未知‘).strip()
if list_re[6] == ‘‘:
list_re[6] = list_re[6].replace(‘‘, ‘未知‘).strip()
if list_re[7] == ‘‘:
list_re[7] = list_re[7].replace(‘‘, ‘未知‘).strip()
list_re[5] = list_re[5].split(‘&nbsp;&nbsp;&nbsp;&nbsp;‘)

reg1 = r‘<p>(.*?)</p>‘
list_re1 = re.findall(reg1, body)
list_re1[0] = list_re1[0][:list_re1[0].find(‘CM‘)]
list_re1[1] = list_re1[1][:list_re1[1].find(‘KG‘)]
try:
list_re1[4] = int(list_re1[4][:list_re1[4].find(‘码‘)])
except ValueError:
list_re1[4] = 0
return list_re + list_re1
# 一个人所有的相册
def getAlbumList(userId):
# 单击相册时的请求url,请求返回所有相册
url = ‘https://mm.taobao.com/self/album/open_album_list.htm?_charset=utf-8&user_id%20={}‘.format(userId)
# 获取每一个相册的正侧表达式
body = getRequestBody(url)
reg = r‘<a href="(.*?)" target="_blank">‘
return re.findall(reg,body)

def getPhotoList(userId,albumId):#url
# 访问相册每个相片
# url = ‘https:%s‘ %url
# print(url)
url = ‘https://mm.taobao.com/album/json/get_album_photo_list.htm?user_id={}&album_id={}&top_pic_id=0‘ \
‘&cover=%2F%2Fimg.alicdn.com%2Fimgextra%2Fi1%2F176817195%2FTB1jFcMKFXXXXblXFXXXXXXXXXX_!!0-tstar.jpg‘ \
‘&page=1&_ksTS=1516189198030_166&callback=jsonp167‘.format(userId,albumId)
# 获取每一个相册的内容,具体到个体
body = getRequestBody(url)# jsonp数据
data = getData(body,‘jsonp167(‘,‘)‘)
dicts = loads(data)
return dicts[‘picList‘]
# 取strat_son至end_son之间的字符串
def getData(body,strat_son,end_son):
# strat_son在不在body里面,在返回其位置,否则-1
temp_index = body.find(strat_son)
start_index = temp_index + len(strat_son)
end_index = body.find(end_son, start_index)
return body[start_index:end_index]

def savePhoto(photoUrl,path,picId):
file_path = ‘f:/mm/‘ + path
if not os.path.exists(file_path):
os.makedirs(file_path)
auto_down(photoUrl, file_path + ‘/‘ + picId + ‘.jpg‘)

# 递归调用,防止因为文件下载不完全导致的错误
def auto_down(url,file_path):
try:
urllib.request.urlretrieve(url,file_path)
except urllib.request.ContentTooShortError:
print(‘Network conditions is not good.Reloading.‘)
auto_down(url,file_path)
# 实施
page = 1
while True:
showInfo_dicts = getShowInfoList(page)
if showInfo_dicts[‘status‘] == 1:
for key in showInfo_dicts[‘data‘][‘searchDOList‘]:# getUrlList():30
userId = key[‘userId‘]
showInfo_list = getInfo(userId)
print(showInfo_list)
print(‘正在保存{}的信息‘.format(key[‘realName‘]))
db = DB(‘localhost‘,‘sa‘,‘123456c‘,‘Models‘,‘utf8‘)
try:
sql = ‘‘‘begin tran insert_data
insert into user_basic values(‘{0}‘,‘{1}‘,‘{2}‘,‘{3}‘,‘{4}‘);
insert into user_extend values(‘{5}‘,‘{6}‘,‘{7}‘,‘{8}‘,‘{9}‘,‘{10}‘);
insert into user_standard values(‘{11}‘,{12},{13},‘{14}‘,‘{15}‘,{16});
commit tran insert_data‘‘‘.format(userId,showInfo_list[0],showInfo_list[2],showInfo_list[1],showInfo_list[4],
userId,showInfo_list[3],showInfo_list[5][0],showInfo_list[5][1],showInfo_list[6],
showInfo_list[7],
userId,float(showInfo_list[8]),float(showInfo_list[9]),showInfo_list[10],
showInfo_list[11],int(showInfo_list[12]))
except ValueError:
continue
try:
db.operateDB(sql)
except pymssql.OperationalError:
continue
print(‘保存信息完成‘)
# 获取每个相册url,封在list中
urlList = getAlbumList(userId)
print(urlList)
# 去重复值,相册的url
for album_url in urlList[::7]:
albumId = getData(album_url, ‘album_id=‘, ‘&‘)
photoList = getPhotoList(userId, albumId) # 获取封装相片的jsonp数据
print(photoList)
for photo_url in photoList:
photoUrl = ‘‘
if photo_url[‘picUrl‘].find(‘.jpg_290x10000‘) != -1:
photoUrl = ‘https:‘ + photo_url[‘picUrl‘].strip(‘.jpg_290x10000‘) + ‘.jpg‘ # 删除指定字符
else:
photoUrl = ‘https:‘ + photo_url[‘picUrl‘]
path = photo_url[‘userId‘] + ‘/‘ + photo_url[‘albumId‘]
savePhoto(photoUrl, path, photo_url[‘picId‘])
else:
print(‘该网页已没有想要的数据了,该换了!‘)
break
page += 1

每个相册只能爬16张。
数据会插入数据中,以下代码,针对得到的数据,做了简单的处理:
import pymssql
from pychartdir import *
def avgMap(data):
# The labels for the bar chart
labels = ["avg_height", "avg_weight", "avg_cup", "avg_shoeSize"]

# The colors for the bars
colors = [0xcc0000, 0x66aaee, 0xeebb22, 0xcccccc, 0xcc88ff]

# Create a PieChart object of size 600 x 380 pixels.
c = XYChart(600, 380)

# Use the white on black palette, which means the default text and line colors are white
c.setColors(whiteOnBlackPalette)

# Use a vertical gradient color from blue (0000cc) to deep blue (000044) as background. Use rounded
# corners of 30 pixels radius for the top-left and bottom-right corners.
c.setBackground(c.linearGradientColor(0, 0, 0, c.getHeight(), 0x0000cc, 0x000044))
c.setRoundedFrame(0xffffff, 30, 0, 30, 0)

# Add a title using 18pt Times New Roman Bold Italic font. Add 6 pixels top and bottom margins to
# the title.
title = c.addTitle("Model average map", "timesbi.ttf", 18)
title.setMargin2(0, 0, 6, 6)

# Add a separator line in white color just under the title
c.addLine(20, title.getHeight(), c.getWidth() - 21, title.getHeight(), 0xffffff)

# Tentatively set the plotarea at (70, 80) and of 480 x 240 pixels in size. Use transparent border
# and white grid lines
c.setPlotArea(70, 80, 480, 240, -1, -1, Transparent, 0xffffff)

# Swap the axis so that the bars are drawn horizontally
c.swapXY()

# Add a multi-color bar chart layer using the supplied data. Use bar gradient lighting with the
# light intensity from 0.75 to 2.0
c.addBarLayer3(data, colors).setBorderColor(Transparent, barLighting(0.75, 2.0))

# Set the labels on the x axis.
c.xAxis().setLabels(labels)

# Show the same scale on the left and right y-axes
c.syncYAxis()

# Set the bottom y-axis title using 10pt Arial Bold font
# c.yAxis().setTitle("USD (millions)", "arialbd.ttf", 10)

# Set y-axes to transparent
c.yAxis().setColors(Transparent)
c.yAxis2().setColors(Transparent)

# Disable ticks on the x-axis by setting the tick color to transparent
c.xAxis().setTickColor(Transparent)

# Set the label styles of all axes to 8pt Arial Bold font
c.xAxis().setLabelStyle("arialbd.ttf", 8)
c.yAxis().setLabelStyle("arialbd.ttf", 8)
c.yAxis2().setLabelStyle("arialbd.ttf", 8)

# Adjust the plot area size, such that the bounding box (inclusive of axes) is 30 pixels from the
# left edge, 25 pixels below the title, 50 pixels from the right edge, and 25 pixels from the bottom
# edge.
c.packPlotArea(30, title.getHeight() + 25, c.getWidth() - 50, c.getHeight() - 25)

# Output the chart
c.makeChart("avg.png")
conn = pymssql.connect(host=‘localhost‘, user=‘sa‘, password=‘123456c‘, database=‘Models‘, charset="utf8")
cur = conn.cursor()

cur.execute("""select avg(height),avg(weight),avg(cast(left(cup,2) as int)),avg(shoeSize) from user_standard
where cup not in (‘0A‘ ,‘B‘,‘M‘,‘3X‘,‘请选择‘,‘不接拍‘,‘C‘,‘**‘,‘QWE‘); """)
row = cur.fetchone()
data_avg = []
while row:
data_avg = list(row)
print(data_avg)
row = cur.fetchone()
avgMap(data_avg)
# 关闭
cur.close()
conn.close()

结果图:

技术分享图片

 




python3 爬淘女郎

标签:man   简单   etl   cep   xtend   []   python   col   img   

原文地址:https://www.cnblogs.com/YuWeiXiF/p/8322299.html

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