Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to crawl Panda Office Audio material data by Python

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

Python how to crawl panda office audio material data, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.

Basic environment configuration

Python 3.6

Pycharm

Requests

Parsel

The related module pip can be installed.

Target web page

Request web page import requestsurl = '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) 123456 parsing web pages Extract data import parselselector = 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] 12345678 Save data def download (url, title): response = requests.get (url=url) Headers=headers) path ='D:\\ python\\ demo\\ Panda Office material\\ background Music\'+ title + '.mp3' with open (path, mode='wb') as f: f.write (response.content) 12345

Is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report