Last active
September 7, 2024 01:58
-
-
Save yuangaonyc/357ea1ecb86455a0618655fafff34c3f to your computer and use it in GitHub Desktop.
cargurus.com scraper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################################################### | |
################# Enter Values Here ##################### | |
######################################################### | |
zipcode = 13775 | |
pages = 100 | |
data_name = "new3" | |
######################################################### | |
link = "https://www.cargurus.com/Cars/inventorylisting/viewDetailsFilterViewInventoryListing.action?sourceContext=carGurusHomePage_false_0&formSourceTag=112&newSearchFromOverviewPage=true&inventorySearchWidgetType=AUTO&entitySelectingHelper.selectedEntity=&entitySelectingHelper.selectedEntity2=&zip={}&distance=100&searchChanged=true&modelChanged=true&filtersModified=true".format(zipcode) | |
raw_data = "_data/_{}_raw.csv".format(data_name) | |
clean_data = "_data/_{}_clean.csv".format(data_name) | |
print("\n ** ready to extract data from: {}...{}".format(link[:20], link[-20:])) | |
print("\n ** pages processing: {}".format(pages)) | |
from bs4 import BeautifulSoup | |
from selenium import webdriver | |
import pandas | |
import time | |
import os | |
data = [] | |
chromedriver = "chromedriver.exe" | |
os.environ["webdriver.chrome.driver"] = chromedriver | |
driver = webdriver.Chrome(chromedriver) | |
driver.get(link) | |
print("\n 3...") | |
time.sleep(1) | |
print("\n 2...") | |
time.sleep(1) | |
print("\n 1...") | |
time.sleep(1) | |
assert "CarGurus" in driver.title | |
for i in range(pages): | |
html = driver.page_source | |
soup = BeautifulSoup(html, "html.parser") | |
cars = soup.find_all("div", {"class":"ft-car cg-dealFinder-result-wrap clearfix"}) | |
for car in cars: | |
row = {} | |
title = car.find_all("h4", {"class":"cg-dealFinder-result-model"}) | |
info = car.find_all("div", {"class":"cg-dealFinder-result-stats"}) | |
deal = car.find_all("div", {"class":"cg-dealFinder-result-deal" }) | |
for item in info: | |
pre_price = item.find_all("span", {"class": "cg-dealFinder-priceAndMoPayment"})[0].text | |
row["price"] = pre_price[pre_price.index("$"):] | |
row["mileage"] = item.find_all("p")[1].text | |
row["address"] = item.find_all("span",{"class":"cg-dealFinder-result-stats-distance"})[0].text | |
row["dealer_rating"] = str(item.find_all("span", {"class": "cg-dealFinder-result-sellerRatingValue"})[0]) | |
for item in title: | |
row["year"] = title[0].text | |
row["make"] = title[0].text | |
for item in deal: | |
row["market_price"] = item.find_all("p",{"class": "cg-dealfinder-result-deal-imv"})[0].text | |
row["days_listed"] = item.find_all("p", {"class": "cg-dealfinder-result-deal-imv"})[1].text | |
data.append(row) | |
print("\n page {} scraping finished".format(i+1)) | |
next_page = driver.find_element_by_class_name("nextPageElement") | |
next_page.click() | |
assert "CarGurus" in driver.title | |
driver.close() | |
df = pandas.DataFrame(data) | |
df.to_csv(raw_data, encoding="ascii") | |
print("\n ** data extraction success!") | |
print("\n ** raw data added: {}".format(raw_data)) | |
# coding: utf-8 | |
# In[1]: | |
######################################################### | |
#################### Data Cleaning ###################### | |
######################################################### | |
import warnings | |
warnings.filterwarnings("ignore") | |
import pandas as pd | |
data = pd.read_csv(raw_data) | |
print("\n ** starting cleaning data: {}".format(raw_data)) | |
time.sleep(3) | |
def remove_dollar_and_comma(string): | |
string = string.replace("$","") | |
string = string.replace(",","") | |
return string | |
def star_counter(string): | |
num = 5 - string.count("star_disabled") - 0.5 * string.count("star_half") | |
return num | |
def print_finish_message(cleanee): | |
message = "\n finished cleaning \"{}\"".format(cleanee) | |
print(message) | |
time.sleep(1) | |
# extract year from title | |
data["year"] = data["year"].str[:4] | |
data["year"] = data["year"].astype("int") | |
print_finish_message("year") | |
# extract price | |
def price_clean(price): | |
price = price.split()[0] | |
price = remove_dollar_and_comma(price) | |
return price | |
data["price"] = data["price"].apply(price_clean).astype("int") | |
print_finish_message("price") | |
# extract market_price | |
def market_price_clean(market_price): | |
market_price = market_price[market_price.index("$"):] | |
market_price = remove_dollar_and_comma(market_price) | |
return market_price | |
data["market_price"] = data["market_price"].apply(market_price_clean).astype("int") | |
print_finish_message("market_price") | |
# extract mileage | |
def mileage_clean(mileage): | |
mileage = mileage[mileage.index(" ")+1:] | |
mileage = mileage[:mileage.index(" ")] | |
mileage = mileage.replace(",","") | |
return(mileage) | |
data["mileage"] = data["mileage"].apply(mileage_clean).astype("int") | |
print_finish_message("mileage") | |
# extract make | |
def make_clean(make): | |
make = make.split()[1] | |
if make == "Land": | |
make = "Land Rover" | |
return make | |
data["make"] = data["make"].apply(make_clean).astype("str") | |
print_finish_message("make") | |
# calculate rating | |
def dealer_rating_clean(dealer_rating): | |
return star_counter(dealer_rating) | |
data["dealer_rating"] = data["dealer_rating"].apply(dealer_rating_clean).astype("float") | |
print_finish_message("dealer_rating") | |
# extract days_listed | |
def days_listed_clean(days_listed): | |
days_listed = days_listed.split()[0] | |
if days_listed == "<": | |
days_listed = 1 | |
return days_listed | |
data["days_listed"] = data["days_listed"].apply(days_listed_clean).astype("int") | |
print_finish_message("days_listed") | |
# create column state | |
data["state"] = data["address"][:] | |
data["city"] = data["address"][:] | |
print_finish_message("address") | |
address = data["address"] | |
state = data["state"] | |
city = data["city"] | |
print("\n data reformatting...") | |
for i in range(len(state)): | |
city[i] = address[i][:address[i].index(",")] | |
state[i] = address[i][address[i].index(","):] | |
state[i] = state[i].replace(", ","") | |
# remove address column | |
data = data.drop("address", 1) | |
# rearrange columns | |
cols = ["year", "make", "mileage", "dealer_rating", "days_listed", "price", "market_price", "city", "state"] | |
data = data[cols] | |
data.to_csv(clean_data) | |
print("\n** data cleaning finished") | |
print("\n** clean data available as {}".format(clean_data)) |
Hi @riyazcodes, I originally wrote this script in 2016. It is most likely outdated by now. I'll see if I can find time to update it. No promises though. Thanks!
trying to modify and see if it works. as of now it seems there is a bot blocker
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Traceback (most recent call last):
File "/Users/riyazmohamed/Downloads/357ea1ecb86455a0618655fafff34c3f-fa7e11a1975194cb0e5338d304ec25f50623bb7e/cargurus_scraper.py", line 18, in
from bs4 import BeautifulSoup
ModuleNotFoundError: No module named 'bs4'
getting this error what did I do wrong? thanks