登录 注册
当前位置:主页 > 资源下载 > 46 > 分享爬虫代码

分享爬虫代码

  • 更新:2024-08-06 15:52:26
  • 大小:347B
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Python - 后端
  • 格式:TXT

资源介绍

import requests from bs4 import BeautifulSoup url = 'https://www.qichemen.com/complain.html' res = requests.get(url) soup = BeautifulSoup(res.text,'html.parser') trs = soup.find('tbody',class_="load-container").find_all('tr',class_="link-tr") for tr in trs: tds = tr.find_all('div',class_="w w1")[1:] print(tds[0].text,tds[1].text)