要提取網頁中的所有CSS鏈接,首先需要使用BeautifulSoup庫解析網頁內容。然后可以通過查找所有的link
標簽并篩選出具有rel="stylesheet"
屬性的標簽來獲取所有的CSS鏈接。
以下是一個示例代碼,演示如何提取網頁中的所有CSS鏈接:
from bs4 import BeautifulSoup
import requests
# 發起請求并獲取網頁內容
url = 'https://www.example.com'
response = requests.get(url)
html_content = response.text
# 使用BeautifulSoup解析網頁內容
soup = BeautifulSoup(html_content, 'html.parser')
# 查找所有的link標簽
link_tags = soup.find_all('link')
# 篩選出具有rel="stylesheet"屬性的link標簽
css_links = [link.get('href') for link in link_tags if link.get('rel') == ['stylesheet']]
# 打印所有的CSS鏈接
for css_link in css_links:
print(css_link)
運行以上代碼,就可以獲取網頁中的所有CSS鏈接并打印出來。您可以根據具體的需求對獲取到的CSS鏈接進行后續處理。