skip to Main Content

Scraping Ebay, working until I use it in sold items

I will use this code to explain my doubt: Using the url without sold filter import requests from bs4 import BeautifulSoup import pandas as pd import numpy as np url = "https://www.ebay.es/sch/i.html?_from=R40&_trksid=p2334524.m570.l1313&_nkw=iphone+x&_sacat=0&LH_TitleDesc=0&_udlo=400&LH_Auction=1&_osacat=0&_odkw=Pok%C3%A9mon+card+Charizard+4%2F102&rt=nc" r = requests.get(url) soup = BeautifulSoup(r.text, "html.parser") results…

VIEW QUESTION

URL trying to scrape loads a different page – SEO

I'm trying to scrape https://sportsbook.draftkings.com/event/179665865?category=odds&subcategory=player-props however my code wasn't working and when I troubleshot it I realized it was taking me to the original page at https://sportsbook.draftkings.com/event/179665865 The first link is a tab within the second link. Here is the…

VIEW QUESTION
Back To Top
Search