Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shaposhnikoff/5bda9131d146e9898aefc6ef8e428eda to your computer and use it in GitHub Desktop.
Save shaposhnikoff/5bda9131d146e9898aefc6ef8e428eda to your computer and use it in GitHub Desktop.
LiFePo4 batteries availability checker
import requests
from bs4 import BeautifulSoup
# URL to scrape
url = "https://ru.nkon.nl/rechargeable/lifepo4/prismatisch.html"
# Send a GET request to the page
response = requests.get(url)
response.raise_for_status() # Ensure the request was successful
# Parse the page content
soup = BeautifulSoup(response.content, 'html.parser')
# Example: Extract product names and prices
products = soup.find_all('div', class_='category-products-grid per-product')
print(f"Found {len(products)} products")
for product in products:
print("*" * 120)
# Get the product name
name = product.find('h2', class_='product-name').get_text(strip=True)
price = product.find('span', class_='price').get_text(strip=True)
availability = product.find('div', class_='actions-cart').get_text(strip=True)
print(f"Product Name: {name}, \nPrice: {price}, \nAvailability: {availability}")
Found 17 products
********************************************************************************
Product Name: Eve LF280K v3 Prismatic 280Ah - LiFePO4 - 3.2V A-grade,
Price: €67.50,
Availability: Out of stock
********************************************************************************
Product Name: Eve MB31 Prismatic 314Ah - LiFePO4 - 3.2V grade A,
Price: €77.00,
Availability: 51 daysAdd to Cart
********************************************************************************
Product Name: Eve LF280K v3 Prismatic 280Ah - LiFePO4 - 3.2V A-grade threaded stud,
Price: €59.99,
Availability: Out of stock
********************************************************************************
Product Name: Envision ESS 4LH3L7 280Ah - LiFePO4 - 3.2V A-grade,
Price: €56.75,
Availability: Out of stock
********************************************************************************
Product Name: Gotion IFP52148102 87Ah - LiFePO4 - 3.2V B-grade,
Price: €37.95,
Availability: Out of stock
********************************************************************************
Product Name: Eve LF304 Prismatic 304Ah - LiFePO4 - 3.2V A-grade,
Price: €69.00,
Availability: Out of stock
********************************************************************************
Product Name: Catl LF173 Prismatic 173Ah - LiFePO4 - 3.2V B-grade,
Price: €57.50,
Availability: Out of stock
********************************************************************************
Product Name: CALB L173F125A Prismatic 125Ah - LiFePO4 - 3.2V B-grade,
Price: €37.50,
Availability: Out of stock
********************************************************************************
Product Name: CALB L300F187 Prismatic 187Ah - LiFePO4 - 3.2V B-grade,
Price: €57.50,
Availability: Out of stock
********************************************************************************
Product Name: CALB L148F88A Prismatic 88Ah - LiFePO4 - 3.2V B-grade,
Price: €36.50,
Availability: Out of stock
********************************************************************************
Product Name: Eve LF22K (high rate) Prismatic 22Ah - LiFePO4 - 3.2V B-grade,
Price: €20.75,
Availability: Out of stock
********************************************************************************
Product Name: Eve LF32 Prismatic 32Ah - LiFePO4 - 3.2V B-grade,
Price: €19.50,
Availability: 49 daysAdd to Cart
********************************************************************************
Product Name: CALB L194F130A Prismatic 130Ah - LiFePO4 - 3.2V B-grade,
Price: €39.90,
Availability: Out of stock
********************************************************************************
Product Name: Eve LF230 Prismatic 230Ah - LiFePO4 - 3.2V A-grade,
Price: €55.00,
Availability: Out of stock
********************************************************************************
Product Name: Eve LF50K Prismatic 50Ah - LiFePO4 - 3.2V A-grade,
Price: €27.50,
Availability: Out of stock
********************************************************************************
Product Name: Eve LF105 Prismatic 105Ah - 105A LiFePO4 - 3.2V A-grade,
Price: €26.95,
Availability: Out of stock
********************************************************************************
Product Name: Envision HC-L315A 3.2V 315Ah B-grade,
Price: €53.45,
Availability: 63 daysAdd to Cart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment