資源簡介
用于網(wǎng)易云音樂中的音樂爬取并下載,而且可爬取到云熱評
代碼片段和文件信息
import?requests
import?json
from?bs4?import?BeautifulSoup#定位數(shù)據(jù)
import?time
import?os#保存文件時(shí)候用到
class?hotComments:
????def?__init__(self):
????????self.headers?=?{
????????????“User-Agent“:?“Mozilla/5.0?(X11;?Linux?x86_64)?AppleWebKit/537.36?(KHTML?like?Gecko)?Chrome/73.0.3683.86?Safari/537.36“
????????}
????#offset頁數(shù)limit一頁顯示最多的評論數(shù)
????def?get_hotComments(selfmusic_id):
????????self.url?=?“http://music.163.com/api/v1/resource/comments/R_SO_4_{}?offset=0&limit=50“.format(music_id)
????????try:
????????????self.text?=?json.loads(requests.get(self.url?headers=self.headers).text)
????????????datas?=?self.text[‘hotComments‘]
????????except:
????????????print(“沒有找到該歌曲的熱評“)
????????????return
????????print(“\n\n\n“+“網(wǎng)易云熱評:???“+“--------“*20+“\n\n\n“)
????????for?content?in?datas:
????????????print(content[‘content‘])
????????print(“\n\n\n“+“---分--界--線----“*20)
?
????def?get_music_id(self?urls=None):
????????#用到異常處理機(jī)制
????????try:
????????????html?=?requests.g
- 上一篇:百度圖片識別
- 下一篇:VIP視頻解析(python)
評論
共有 條評論