From 0691418365cd671e499d412d51013afde4407f29 Mon Sep 17 00:00:00 2001 From: localhorst Date: Sat, 4 Jun 2022 15:36:41 +0200 Subject: [PATCH] filter for ebay search --- search_eBay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search_eBay.py b/search_eBay.py index 0edac54..c0493a2 100644 --- a/search_eBay.py +++ b/search_eBay.py @@ -36,7 +36,7 @@ def search(search_term, max_pages): while not last_result_page: result_page_added = 0 - url = 'https://www.ebay.de/sch/i.html?_from=R40&_nkw=' + search_term.replace(" ", "+") + '&_sop=10&LH_PrefLoc=3&LH_BIN=1&_pgn=' + str(page_counter) + url = 'https://www.ebay.de/sch/i.html?_from=R40&_nkw=' + search_term.replace(" ", "+") + '&_sop=10&LH_PrefLoc=1&LH_SellerType=2&LH_BIN=1&_pgn=' + str(page_counter) #print ("Web Page: ", url)