欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 财经 > 产业 > 【python】爬去二手车数据 未完成

【python】爬去二手车数据 未完成

2024/12/3 1:53:09 来源:https://blog.csdn.net/JianShengShuaiest/article/details/144015511  浏览:    关键词:【python】爬去二手车数据 未完成

技术方案

python
selenium

先下载Microsoft Edge WebDriver

Microsoft Edge WebDriver 官网

先看一下自己的edge版本

在这里插入图片描述

搜索到版本然后下载自己的版本

在这里插入图片描述

安装依赖

pip install selenium
import time
from selenium import webdriverdriver = webdriver.Edge(executable_path=r"/Users/xiesi/Documents/Project/PythonDCD/edgedriver_mac64/msedgedriver",capabilities={},
)
r = driver.get("https://www.baidu.com")
print(driver.title)
time.sleep(10)
driver.quit()

已经抓到,但是需要解密

import time
from selenium import webdriverdriver = webdriver.Edge(executable_path=r"/Users/xiesi/Documents/Project/PythonDCD/edgedriver_mac64/msedgedriver",capabilities={},
)
r = driver.get("https://www.dongchedi.com/usedcar/9,10-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-3,5-x-x-x-x-420100-1-6-x-x-x-x"
)
print(driver.title)
time.sleep(10)
try:urllist = driver.find_elements_by_xpath("/html/body/div[1]/div/div[2]/div/div/div[2]/ul/li")print(len(urllist))for i in urllist:i2 = i.find_element_by_xpath("a/dl/dd[3]").textprint(i2)for i3 in i2:print(ord(i3))# /html/body/div[1]/div/div[2]/div/div/div[2]/ul/li[1]/a/dl/dd[3]/text()except Exception as e:print(e)driver.quit()

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com