1. 程式人生 > 程式設計 >基於Python爬取素材網站音訊檔案

基於Python爬取素材網站音訊檔案

基本環境配置

  • python 3.6
  • pycharm
  • requests
  • parsel

相關模組pip安裝即可

目標網頁

基於Python爬取素材網站音訊檔案
基於Python爬取素材網站音訊檔案

請求網頁

import requests
url = 'https://www.tukuppt.com/peiyue/zonghe_0_0_0_0_0_0_1.html'
 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)

解析網頁,提取資料

import parsel
selector = parsel.Selector(response.text)
urls = selector.css('#audio850995 source::attr(src)').getall()
titles = selector.css('.b-box .info .title::text').getall()
data = zip(urls,titles)
for i in data:
  mp3_url = 'https:' + i[0]
  title = i[1]

儲存資料

def download(url,title):
  response = requests.get(url=url,headers=headers)
  path = 'D:\\python\\demo\\熊貓辦公素材\\背景音樂\\' + title + '.mp3'
  with open(path,mode='wb') as f:
    f.write(response.content)

基於Python爬取素材網站音訊檔案
基於Python爬取素材網站音訊檔案

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。