【发布时间】:2021-12-17 01:50:27
【问题描述】:
我需要从一系列产品页面中抓取下面的代码,然后将其拆分以分别显示作者和插画家。
问题是:
有些页面既有作者的<li>,也有<li>的插图画家,如第1页
某些页面只有作者的<li>,如第2页
某些页面既没有作者也没有插画,所以根本没有<ul>,就像第3页一样
了解<li> 是否为插画家提供的唯一方法是,<li> 是否包含文本“(Illustreerder)”。
当作者和插画家为空时,如何为它们分配默认值?
<ul class="product-brands">
<li class="brand-item">
<a href="https://lapa.co.za/Skrywer/zinelda-mcdonald-illustreerder.html" title="Zinelda McDonald (Illustreerder)">Zinelda McDonald (Illustreerder)</a>
</li>
<li class="brand-item">
<a href="https://lapa.co.za/Skrywer/jose-reinette-palmer.html" title="Jose Palmer & Reinette Lombard">Jose Palmer & Reinette Lombard</a>
</li>
</ul>
from bs4 import BeautifulSoup
import requests
headers = {
'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'
}
# AUTHOR & ILLUSTRATOR
page1 = 'https://lapa.co.za/kinder-en-tienerboeke/leer-my-lees-vlak-r-grootboek-10-tippie-help-vir-frikkie'
# AUTHOR ONLY
page2 = 'https://lapa.co.za/catalog/product/view/id/1649/s/hoendervleis-grillerige-stories-en-rympies/category/84/'
# NO AUTHOR and NO ILLUSTRATOR
page3 = 'https://lapa.co.za/catalog/product/view/id/1633/s/sanri-steyn-7-vampiere-van-vlermuishoogte/category/84/'
# PAGE WITH NO STOCK
page4 = 'https://lapa.co.za/kinder-en-tienerboeke/my-groot-lofkleuterbybel-2-oudiomusiek'
illustrator = '(Illustreerder)'
productlist = []
r = requests.get(page2, headers=headers)
soup = BeautifulSoup(r.content, 'lxml')
isbn = soup.find('div', class_='value', itemprop='sku').text.replace(" ", "")
stocks = soup.find('div', class_='stock available')
if stocks is not None:
stock = stocks.text.strip()
if stocks is None:
stock = 'n/a'
for ultag in soup.find_all('ul', {'class': 'product-brands'}):
for litag in ultag.find_all('li'):
author = litag.text.strip() or 'None'
if illustrator not in author:
author = author
for ultag in soup.find_all('ul', {'class': 'product-brands'}):
for litag in ultag.find_all('li'):
author = litag.text.strip()
if illustrator in author:
illustrator = author
bookdata = [isbn, stock, author, illustrator]
print(bookdata)
预期输出:
r = requests.get(page1, headers=headers)
['9781776356515', 'In voorraad', 'Jose Palmer & Reinette Lombard', 'Zinelda McDonald']
预期输出:
r = requests.get(page2, headers=headers)
['9780799383874', 'In voorraad', 'Jaco Jacobs', 'None']
预期输出:
r = requests.get(page3, headers=headers)
['9780799383690', 'In voorraad', 'None', 'None']
【问题讨论】:
标签: python beautifulsoup lxml