
爬虫
hikari_chan
这个作者很懒,什么都没留下…
展开
-
python爬取搜狐新闻网站所有新闻的标题和正文并按阅读量排行输出
# _*_ coding: utf-8 _*_"""实现定量爬取搜狐网站新闻Author: HIKARIVersion: V 0.2"""from selenium import webdriverfrom selenium.webdriver.support.wait import WebDriverWaitimport timefrom pyquery import PyQuery as pqimport pymongofrom bs4 import BeautifulSoup原创 2021-12-09 01:00:09 · 2272 阅读 · 0 评论 -
用selenium爬取京东平台商品列表,爬取商品名称、价格、店铺信息
#用selenium爬取京东平台商品列表,爬取商品名称、价格、店铺信息from selenium import webdriverfrom selenium.webdriver.common.by import Byfrom selenium.webdriver.common.keys import Keysfrom selenium.webdriver.remote.webelement import WebElementfrom selenium.webdriver.support impo原创 2021-05-05 21:02:32 · 1208 阅读 · 0 评论