抓取小猪短租列表内容并保存在mongodb里

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了抓取小猪短租列表内容并保存在mongodb里相关的知识,希望对你有一定的参考价值。

import pymongo
import requests
from bs4 import BeautifulSoup
client = pymongo.MongoClient(‘localhost‘,27017)
xiaozhu = client[‘xiazhu‘]
sheet_line = xiaozhu[‘sheet_line‘]
def get_page_within(pages):
for page_numb in range(1,pages+1):
web_data = requests.get(‘http://bj.xiaozhu.com/search-duanzufang-p{}-0/‘.format(page_numb))
soup = BeautifulSoup(web_data.text,‘lxml‘)
titles = soup.select(‘span.result_title‘)
prices = soup.select(‘span.result_price > i‘)
for title,price in zip(titles,prices):
data = {
‘title‘:title.get_text(),
‘price‘:int(price.get_text())
}
sheet_line.insert_one(data)
get_page_within(3)
for item in sheet_line.find({‘price‘:{‘$lt‘:500}}):
print(item)




















以上是关于抓取小猪短租列表内容并保存在mongodb里的主要内容,如果未能解决你的问题,请参考以下文章

爬取小猪短租网信息

爬虫系列3:Requests+Xpath 爬取租房网站信息并保存本地

总结整理房产类理解

利用Scrapy爬取所有知乎用户详细信息并存至MongoDB

使用Selenium模拟浏览器抓取淘宝商品美食信息

Python爬虫编程思想(61): 项目实战:抓取租房信息