24000多的音效素材任你選,Python爬蟲實戰
前言
本文的文字及圖片來源於網路,僅供學習、交流使用,不具有任何商業用途,版權歸原作者所有,如有問題請及時聯絡我們以作處理。
專案目標
爬取音效素材
受害者地址
http://sc.chinaz.com/yinxiao/
爬蟲程式碼
匯入工具
import requests
import parsel
請求網站
url = 'http://sc.chinaz.com/yinxiao/index_{}.html'.format(page)
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36'
}
response = requests.get(url=url, headers=headers)
解析網站資料,爬取資料
selector = parsel.Selector(response.text)
urls = selector.css('#musiclist .n1::attr(thumb)').getall()
titles = selector.css('#musiclist .z a::attr(alt)').getall()
data = zip(urls, titles)
for i in data:
print(i)
download_url = i[0]
title = i[1]
response_2 = requests.get(url=download_url, headers=headers)
儲存資料
filename = 'C:\\Users\\Administrator\\Desktop\\新建資料夾\\' + title + '.mp3'
with open(filename, mode='wb') as f:
f.write(response_2.content)
執行程式碼,效果如下圖
相關文章
- Python 爬蟲實戰Python爬蟲
- python 爬蟲實戰的原理Python爬蟲
- python爬蟲實戰,爬蟲之路,永無止境Python爬蟲
- 圖靈樣書爬蟲 - Python 爬蟲實戰圖靈爬蟲Python
- python爬蟲實戰教程-Python爬蟲開發實戰教程(微課版)Python爬蟲
- python爬蟲的最佳實踐(六)--爬蟲中的多程式Python爬蟲
- 【Python爬蟲9】Python網路爬蟲例項實戰Python爬蟲
- python3網路爬蟲開發實戰_Python3 爬蟲實戰Python爬蟲
- Python 爬蟲實戰(2):股票資料定向爬蟲Python爬蟲
- Python網路爬蟲實戰Python爬蟲
- Python爬蟲實戰:爬取淘寶的商品資訊Python爬蟲
- python爬蟲-33個Python爬蟲專案實戰(推薦)Python爬蟲
- 爬蟲實戰爬蟲
- 不踩坑的Python爬蟲:Python爬蟲開發與專案實戰,從爬蟲入門 PythonPython爬蟲
- Python爬蟲實戰之bilibiliPython爬蟲
- Python【爬蟲實戰】提取資料Python爬蟲
- 網路爬蟲——爬蟲實戰(一)爬蟲
- python3 爬蟲實戰:為爬蟲新增 GUI 影象介面Python爬蟲GUI
- python網路爬蟲應用_python網路爬蟲應用實戰Python爬蟲
- 爬蟲實戰scrapy爬蟲
- 《Python3網路爬蟲開發實戰》教程||爬蟲教程Python爬蟲
- Python爬蟲開發與專案實戰——基礎爬蟲分析Python爬蟲
- Python爬蟲開發與專案實戰 3: 初識爬蟲Python爬蟲
- Python爬蟲 ---scrapy框架初探及實戰Python爬蟲框架
- Python爬蟲實戰之叩富網Python爬蟲
- Python3爬蟲實戰(requests模組)Python爬蟲
- 2個月精通Python爬蟲——3大爬蟲框架+6場實戰+反爬蟲技巧+分散式爬蟲Python爬蟲框架分散式
- Python爬蟲實戰詳解:爬取圖片之家Python爬蟲
- Python3.X 爬蟲實戰(併發爬取)Python爬蟲
- python爬蟲實戰:爬取西刺代理的代理ip(二)Python爬蟲
- 「docker實戰篇」python的docker爬蟲技術-pythonDockerPython爬蟲
- [Python3網路爬蟲開發實戰] 分散式爬蟲原理Python爬蟲分散式
- python爬蟲實操專案_Python爬蟲開發與專案實戰 1.6 小結Python爬蟲
- Python網路爬蟲實戰專案大全 32個Python爬蟲專案demoPython爬蟲
- 爬蟲:多程式爬蟲爬蟲
- Puppeteer爬蟲實戰(三)爬蟲
- 爬蟲技術實戰爬蟲
- 爬蟲利器 Puppeteer 實戰爬蟲