自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 中国疫情数据爬取

【代码】中国疫情数据爬取代码。

2023-02-04 17:38:24 374

原创 BeautifulSoup的使用--微博热搜榜

import requestsimport refrom bs4 import BeautifulSoupurl = "https://s.weibo.com/top/summary"resp = requests.get(url)# print(resp.text)html = BeautifulSoup(resp.text, "html.parser")data = html.find("div", class_="data", id="pl_top_realtimehot")# .

2021-08-07 10:10:47 185

原创 selenium 酷狗音乐搜索歌曲播放

from selenium.webdriver import Chromefrom selenium.webdriver.common.keys import Keysimport timeweb = Chrome()web.get("https://www.kugou.com/")# 找到某个元素点击el = web.find_element_by_xpath('/html/body/div[1]/div[2]/div/ul[1]/li[2]/a')el.click() # 点击事件.

2021-08-06 14:26:47 289 2

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除