Python 爬虫 小练习
获得某易云音乐 对应歌单下的所有歌曲的歌曲、专辑图片、歌手图片、lrc歌词 import requests from bs4 import BeautifulSoup from selenium import webdriver from selenium.webdriver.chrome.options import Options import urllib.request import json import re headers = { 'Referer': 'http://music.163.com/', 'Host': 'music.163.com', 'U
用户评论