摘要: 一、主题式网络爬虫设计方案 1.主题式网络爬虫 爬取酷狗top500歌曲热度排名 2.主题式网络爬虫爬取的内容与数据特征分析 内容及数据特征分析:对酷狗TOP500上歌曲的热度排行做一个可视化表格, 主要是爬取酷狗音乐榜单酷狗TOP500的歌曲排名 3.主题式网络爬虫设计方案概述(包括实现思路与技术 阅读全文
posted @ 2020-09-26 12:21 LXL128 阅读(2024) 评论(0) 推荐(0) 编辑
摘要: import requests #请求的作用,简单理解就是向网页请求url链接,进而爬取它 from bs4 import BeautifulSoup #这个BeautifulSoup库是对网页的一个排版美化的作用,给原始网页html换行加缩近使其看着更舒适,学过前端的都很容易理解 import b 阅读全文
posted @ 2020-04-24 19:39 LXL128 阅读(440) 评论(0) 推荐(0) 编辑
摘要: from selenium import webdriver from bs4 import BeautifulSoup from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Ke 阅读全文
posted @ 2020-03-21 13:37 LXL128 阅读(171) 评论(0) 推荐(0) 编辑