91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1.52KB
    文件類型: .py
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2024-05-08
  • 語言: Python
  • 標(biāo)簽: 爬取??爬蟲??

資源簡介


資源截圖

代碼片段和文件信息

from?selenium?import?webdriver
import?csv
from?selenium.webdriver.chrome.options?import?Options

chrome_options?=?Options()
chrome_options.add_argument(‘--headless‘)
chrome_options.add_argument(‘--disable-gpu‘)
driver?=?webdriver.Chrome(options=chrome_options)
url1?=?‘http://music.163.com/#/discover/playlist/?order=hot&cat=%E5%85%A8%E9%83%A8&limit=35&offset=‘
offset?=?0

#準(zhǔn)備好存儲歌單的csv文件
csv_file?=?open(“playlist.csv“‘w‘newline=‘‘)
writer?=?csv.writer(csv_file)
writer.writerow([‘標(biāo)題‘‘播放數(shù)‘‘鏈接‘])

#解析每一頁,直到‘下一頁’為空

for?page?in?range(2):
????print(‘\n???正在爬取第%d頁。。。‘%page‘\n‘)
????url?=?url1+str(offset)
????offset?=?offset+35
????print(‘??‘url?‘\n‘)

????#用webDriver加載頁面

評論

共有 條評論