-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLianjiaScraper.py
141 lines (127 loc) · 4.57 KB
/
LianjiaScraper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
from urllib.request import urlopen
from bs4 import BeautifulSoup
import csv
# 根据网址获取一个网页内容,返回BeautifulSoup对象
def openWebPage(url):
try:
print('打开网页%s: ' % url)
html = urlopen(url)
bsObj = BeautifulSoup(html)
print('打开网页%s成功' % url)
return bsObj
except:
print('打开网页%s时发生错误' % url)
return None
#
def getInfosInAPage(bsObj):
try:
lis = bsObj.find('ul', {'id': 'house-lst'}).find_all('li')
except:
print('无法获取id为house-lst的ul,请检查')
infos = []
for li in lis:
#print('----------------------------------------------------')
## print(li)
info = getInfosInALi(li)
infos.append(info)
#print('---------------------------------------------------')
return infos
def getInfosInALi(li):
infos = {'标题': '', '建成年份': '', '层数': '', '总价': '', '地址': '', '户型': '', '朝向': '', '均价': '', '面积': ''}
address = ''
ceng = ''
chaoXiang = ''
year = ''
leiXing = ''
area = ''
totalPrice = ''
averagePrice = ''
try:
infoPanel = li.find('div', {'class': 'info-panel'})
infos['标题'] = infoPanel.h2.a.get_text()
#print(infos['标题'])
info = infoPanel.find('div', {'class': 'other'}).get_text().replace('\t', '').replace('\n','').replace('\r', '').split('|')
for item in info:
if(item.find('层') != -1):
infos['层数'] = item
elif(item.find('建') != -1):
infos['建成年份'] = item
elif(item.find('朝') != -1):
infos['朝向'] = item
else:
address += item
#print(infos)
info = infoPanel.find('div', {'class': 'where'}).get_text().replace('\xa0',' ').replace('\r', '').replace('\t', '').lstrip().rstrip().replace('\n', '').split(' ')
#print(info)
address += info[0]
infos['地址'] = address
leiXing += info[2]
infos['户型'] = leiXing
area += info[4]
infos['面积'] = area
#print(infos)
totalPrice = infoPanel.find('div', {'class': 'price'}).span.get_text()
infos['总价'] = totalPrice
averagePrice = infoPanel.find('div', {'class': 'price-pre'}).get_text()[0:-3]
infos['均价'] = averagePrice
#print(infos)
return infos
except:
print('获取房屋信息出错')
print(infos)
return infos
#
def saveInfosIntoCSV(infos, path):
try:
print('开始保存信息')
csvFile = open(path, 'a+', newline='')
writer = csv.writer(csvFile)
## writer.writerow(['标题', '地址', '户型', '朝向', '层数', '建成年份', '面积', '总价', '均价'])
for info in infos:
row = []
row.append(info['标题'])
row.append(info['地址'])
row.append(info['户型'])
row.append(info['朝向'])
row.append(info['层数'])
row.append(info['建成年份'])
row.append(info['面积'])
row.append(info['总价'])
row.append(info['均价'])
writer.writerow(row)
csvFile.close()
print('保存信息完成')
except:
print('保存信息出错')
def writeHeaderIntoCSV(header, path):
csvFile = open(path, 'a+', newline='')
writer = csv.writer(csvFile)
writer.writerow(header)
csvFile.close()
if __name__ == '__main__':
baseUrl = 'http://sh.lianjia.com/ershoufang/d'
length = 0
temp = 0
fileIndex = 1
index = 1
results = []
writeHeaderIntoCSV(['标题', '地址', '户型', '朝向', '层数', '建成年份', '面积', '总价', '均价'], 'D:\\python爬虫\\链家网(上海)\\LianJia' + str(fileIndex) + '.csv')
while True:
url = baseUrl + str(index)
bsObj = openWebPage(url)
if(bsObj == None):
break
results += getInfosInAPage(bsObj)
length += len(results)
temp += len(results)
saveInfosIntoCSV(results, 'D:\\python爬虫\\链家网(上海)\\LianJia' + str(fileIndex) + '.csv')
if(temp > 100000):
temp = 0
fileIndex += 1
index += 1
print('===================================================================================================')
print(length)
## url = 'http://sh.lianjia.com/ershoufang/d785'
## bsObj = openWebPage(url)
## if(bsObj != None):
## print(getInfosInAPage(bsObj))