簡體   English   中英

無法使用 python 獲取 jpg 圖像

[英]unable to get jpg image using python

因為我只想提取 jpg 鏈接,但它從https://www.skechers.com/women/shoes/athletic-sneakers/?start=0&sz=168打印整個鏈接

import requests
from bs4 import BeautifulSoup
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.keys import Keys
import pandas as pd 
import time 
url = 'https://www.skechers.com/women/shoes/athletic-sneakers/?start=0&sz=168'
options = webdriver.ChromeOptions()
options.add_experimental_option("excludeSwitches", ['enable-automation'])
options.add_argument('--disable-blink-features=AutomationControlled')
options.add_argument(
    "user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36")
options.add_argument("--remote-debugging-port=9222")

driver = webdriver.Chrome('D:/chromedriver',options=options)
driver.get(url)
time.sleep(30)
pageSource = driver.page_source
soup = BeautifulSoup(pageSource, 'html.parser')
content= soup.find_all('div',class_='col-6 col-sm-4 col-xl-3 mb-2 mb-md-1 mb-lg-4 px-lg-3') 
for item in content:
    
    try:
        images = item.find('img',{'class':'tile-image c-product-tile__img'},src=True)
    except:
        images=''
    print(images)

在此處輸入圖像描述

使用images['src']打印出屬性。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM