I'm a complete beginner but have a question about my code for web scraping products on aliexpress.
The problem is that I only get 1 result instead of all of them.
from bs4 import BeautifulSoup
import requests
html_text = requests.get('https://dutch.alibaba.com/products/uhf_rfid_label.html?IndexArea=product_en&page=1').text
soup = BeautifulSoup(html_text, 'lxml')
producten = soup.find_all('div', class_ ='organic-list app-organic-search__list')
for product in producten:
product_naam = product.find('p', class_ = 'elements-title-normal__content large').text
jaren_actief = product.find('span', class_ = 'seller-tag__year flex-no-shrink').text
print(f'''Product naam: {product_naam} ''')
How do I get the information of ALL the products?
Will assume the information you want to get is the
title
of the product and theprice
as @Andrej_Kesley suggested in his answer.Parsing the page as HTML, you can get only 8 products with Beautiful Soup as follows:
Output: