Skip to content

Instantly share code, notes, and snippets.

View Radicals27's full-sized avatar
💭
Interning @ Maxart

Radicals27

💭
Interning @ Maxart
View GitHub Profile
@Radicals27
Radicals27 / PriceScraper.py
Created November 28, 2019 06:51
This is an eBay price scraper for Nvidia RTX2080 cards. It collects the prices and links to the items in a .csv file.
import csv
import urllib.request
from bs4 import BeautifulSoup
import time
item_links = []
price_links = []
website = "https://www.ebay.com.au/sch/i.html?_from=R40&_trksid=m570.l1313&_nkw=rtx+2080&_sacat=0&LH_TitleDesc=0&_osacat=0&_odkw=gtx+2080"
print(website)