In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces Python how to climb NetEase cloud music, the article is very detailed, has a certain reference value, interested friends must read it!
The code is as follows:
Import osfrom lxml import etreeimport requests# sets header information to prevent it from being detected as crawler headers = {'User-Agent':' Mozilla/5.0 (Windows NT 10.0; Win64) X64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'} url= "https://music.163.com/discover/toplist?id=3778678"base_url = 'http://music.163.com/song/media/outer/url?id='# create a new dictionary to store the final required data d = dict () re = requests.get (url=url) Headers=headers). Text# constructs a XPath parsing object and automatically corrects the HTML text html = etree.HTML (re) # XPath uses the path expression to select x = html.xpath ('/ / a [contains (@ href) "/ song?")') # filter the obtained data for data in x: # get the music url href = data.xpath ('. / @ href') [0] id = href.split ("=") [1] href = base_url + "% s.mp3" >
The effect is as follows:
The above is all the contents of the article "how Python crawls NetEase Cloud Music". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.