中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python58同城爬蟲

發布時間:2020-10-22 17:03:52 來源:網絡 閱讀:423 作者:wx5d72071a58c07 欄目:編程語言
import requests,time,csv
from bs4 import BeautifulSoup

href_list=[]
url='https://hz.58.com/lvguanbinguan'
headers={
        'user-agent': 
                }
params={
        'PGTID': '0d306b32-0004-f711-87c6-3e3cb7371c0d',
        'ClickID': '2'
}
res=requests.get(url,headers=headers,params=params)
soup=BeautifulSoup(res.text,'html.parser')
titles=soup.find_all('h3',class_="title")
for title in titles:
        href=title.find('a')['href']
        print(href)
        href_list.append(href)

csv_file=open('58同城酒店轉讓項目信息.csv','w+',newline='',encoding='utf-8')
writer=csv.writer(csv_file)
file_head=['項目名','聯系人','聯系電話','信息','地址']
writer.writerow(file_head)

hotel_list=[]
for href in href_list:
        url=href
        headers={
                'user-agent': 
        }
        res=requests.get(url,headers=headers)
        soup=BeautifulSoup(res.text,'lxml')
        title=soup.find('h2',class_="c_000 f20").text
        name=soup.find(class_="poster-name").text
        phone=soup.find('p',class_="phone-num").text
        detail=soup.find('p',class_="house_basic_title_info").text
        address=soup.find('p',class_="p_2").text
        print(title,phone)
        hotel_list.append([title,name,phone,detail,address])
        time.sleep(1)

for row in hotel_list:
        writer.writerow(row)

csv_file.close()
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇原县| 定日县| 祁门县| 南川市| 夹江县| 花垣县| 南阳市| 洪湖市| 密山市| 元谋县| 慈溪市| 三明市| 灵石县| 通化县| 永嘉县| 杂多县| 北京市| 文水县| 正阳县| 马公市| 竹溪县| 昭通市| 湟源县| 中西区| 手游| 阿瓦提县| 喀什市| 讷河市| 临海市| 鄂托克旗| 昌黎县| 延庆县| 游戏| 西昌市| 松溪县| 南华县| 临沭县| 株洲市| 阜平县| 广宁县| 布尔津县|