为了找到物美价廉的房子,连夜爬了某租房网站1W多条租房信息( 二 )

三、将解密函数应用到爬虫代码中 , 并将最终数据保存在csv表格中name=box.find_all('a',class_="strongbox")[0].text.replace('\n','').replace(' ','').replace('~','')room=box.find_all('p',class_='room')[0].text.replace('\n','').replace(' ','').replace('\xa0','')room=convert(room)[0]layout=room.split('卫')[0]+'卫'area=room.split('卫')[1]infor=box.find_all('p',class_='infor')[0].text.replace('\n','').replace(' ','').replace('','')money=box.find_all('div',class_='money')[0].text.replace('\n','')money=convert(money)[0]result=[name,layout,area,infor,money]with open('租房数据20201027.csv', 'a+',newline='', encoding='gb18030') as f:f_csv = csv.writer(f)f_csv.writerow(result)【为了找到物美价廉的房子,连夜爬了某租房网站1W多条租房信息】最终效果如下:
为了找到物美价廉的房子,连夜爬了某租房网站1W多条租房信息文章插图