Wasn't sure what tool they were using for scraping...
# 🌎general
b
Wasn't sure what tool they were using for scraping on the backend, something like BS4 in Python can scrape the URL with query strings:
Copy code
import requests
from bs4 import BeautifulSoup

URL = "https://enviro.com/products/catalogue/product/?prod=S50"

response = requests.get(URL)

if response.status_code == 200:
    soup = BeautifulSoup(response.content, 'html.parser')
    print(soup)
else:
    print(f"Failed to retrieve the webpage. Status code: {response.status_code}")
The above function works and can scrape the URL
4 Views