欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python-爬虫-58同城

程序员文章站 2022-06-09 09:43:12
...

python-爬虫-58同城

代码

from bs4 import BeautifulSoup
import requests
import csv
import time

url = "https://bj.58.com/pinpaigongyu/pn/{page}/?minprice=2000_4000"

#已完成的页数序号,初时为0
page = 0
# 创建一个有写权限的csv_file
csv_file = open("rent.csv","w") 
# 创建csv_writer,分隔符','
csv_writer = csv.writer(csv_file, delimiter=',')

while True:

    page += 1
    print("fetch: ", url.format(page=page))
    time.sleep(1)
    # 响应
    response = requests.get(url.format(page=page))
    html = BeautifulSoup(response.text)
    # 在list中选li选项
    house_list = html.select(".list > li")
	
    # 循环在读不到新的房源时结束
    if not house_list:
        break

    for house in house_list:
        house_title = house.select("h2")[0].string
        house_url = house.select("a")[0]["href"]
        house_info_list = house_title.split()

        # 如果第二列是公寓名则取第一列作为地址
        if "公寓" in house_info_list[1] or "青年社区" in house_info_list[1]:
            house_location = house_info_list[0]
        else:
            house_location = house_info_list[1]

        house_money = house.select(".money")[0].select("b")[0].string
        csv_writer.writerow([house_title, house_location, house_money, house_url])

csv_file.close()