├── .idea ├── .gitignore ├── Web-Scraping.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── Scraped-Data ├── airbnb_scraped_data.csv ├── carpages_scraped_data.csv ├── indeed_scraped_data.csv ├── nfl_scraped_data.csv ├── nike_scraped_data.csv ├── union-los-angeles_scraped_data.csv └── world_population_scraped_data.csv ├── airbnb.py ├── basics.py ├── carpages.py ├── imdb.py ├── indeed.py ├── nfl.py ├── nike.py ├── selenium_basics.py ├── stocks.py ├── twitter.py ├── union_los_angeles.py └── world_population.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Datasource local storage ignored files 5 | /dataSources/ 6 | /dataSources.local.xml 7 | # Editor-based HTTP Client requests 8 | /httpRequests/ 9 | -------------------------------------------------------------------------------- /.idea/Web-Scraping.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Web Scraping in Python 2 | Web Scraping in Python with Beautifulsoup and Selenium. 3 | 4 | ## Description 5 | 6 | In this project, data are scrap from websites using python with Beautifulsoup and Selenium. 7 | 8 | ## Web Scraping using Beautifulsoup 9 | 10 | ### In basics.py 11 | 12 | Here are the basics of Beautifulsoup. How to use Beautifulsoup functions to get data from websites. 13 | 14 | ### In stocks.py 15 | 16 | Here from (https://www.marketwatch.com/investing/stock/aapl) this website, 5 types of data are scraped. They are price of stock, closing price, 52 week range lower, 52 week range upper, analyst rating. 17 | 18 | ### In world_population.py 19 | 20 | Here from (https://www.worldometers.info/world-population/) this website World Population data is scraped and stored into Scraped-Data folder in CSV format. 21 | 22 | ### In nfl.py 23 | 24 | Here from (https://www.nfl.com/standings/league/2019/reg/) this website National Football League data is scraped and stored into Scraped-Data folder in CSV format. 25 | 26 | ### In airbnb.py 27 | 28 | Here ***Multiple Web Page*** data have been scraped from https://www.airbnb.com and those data are stored into Scraped-Data folder in CSV format. 29 | 30 | ### In carpages.py 31 | 32 | Here 1 to 20 number pages data have been scraped from https://www.carpages.ca and those data are stored into Scraped-Data folder in CSV format. 33 | 34 | ## Web Scraping using Selenium 35 | 36 | ### In selenium_basics.py 37 | 38 | Here are the basics of Selenium. How to scrape data using **XPATH**, Sending Text into an **Input Box**, Clicking on a **Button**, Taking a **Screenshot**, **Self-Scrolling**, Wait Times. 39 | 40 | ### In imdb.py 41 | 42 | Here first set google as starting page and type ***"top 100 movies of all time imdb"*** in the search box. Then press Enter and click on the link corresponding to IMDb. After that create a wait time for the entire page to load. Scroll down to where the 50th movie appears. Then take a screenshot of the page. 43 | 44 | ### In nike.py 45 | 46 | Here first set google as starting page and type ***"nike"*** in the search box. Then press Enter and click on the link corresponding to Nike. After that create a wait time for the entire page to load. Then click on **Sell** and close the popup. Then started **Infinite Scrolling**. When it reached the bottom of that page then scraped data using ***Beautifulsoup*** and stored those data into Scraped-Data folder in CSV format. 47 | 48 | ### In union_los_angeles.py 49 | 50 | Here from (https://store.unionlosangeles.com/collections/outerwear) this website data are scraped. First using selenium go to that website, wait time for the entire page to load. Then started **Infinite Scrolling**. When it reached the bottom of that page then scraped data using ***Beautifulsoup*** and stored those data into Scraped-Data folder in CSV format. 51 | 52 | ### In twitter.py 53 | 54 | Here celebrity tweets are scraped. First using selenium user name and password entered into input filed and login button pressed. Then in the search box of the home page celebrity name is entered automatically. Then using Beautifulsoup tweets and scraped and store them in a list. 55 | 56 | ### In indeed.py 57 | 58 | Here from (https://www.indeed.com) job post data are scraped. First, enter the job name and location into the input box and click the search button using selenium. Then grabs the HTML of each posting and scraped those data. Then sort those data by Date also stores those data into Scraped-Data folder in CSV format. Then Email automatically to those email addresses. 59 | -------------------------------------------------------------------------------- /Scraped-Data/airbnb_scraped_data.csv: -------------------------------------------------------------------------------- 1 | ,Links,Title,Details,Price,Rating 2 | 0,,,,, 3 | 1,https://www.airbnb.com/rooms/8687709?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Highrise studio w/ incredible views,2 guests · Studio · 1 bed · 1 bath,$75,4.71 4 | 2,https://www.airbnb.com/rooms/24528072?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Waikiki Studio with Lanai Ocean View,2 guests · Studio · 1 bed · 1 bath,$82,4.69 5 | 3,https://www.airbnb.com/rooms/9174596?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Suite 918 at Waikiki Grand Hotel,3 guests · Studio · 2 beds · 1 bath,$122,4.68 6 | 4,https://www.airbnb.com/rooms/32925907?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,**Center of Waikiki**2 blocks to Beach**,2 guests · Studio · 1 bed · 1 bath,$88,4.79 7 | 5,https://www.airbnb.com/rooms/9709468?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,A - Sunny Ocean View Studio ★ Kitchenette ★ LEGAL,2 guests · Studio · 1 bed · 1 bath,$78,4.83 8 | 6,https://www.airbnb.com/rooms/42796727?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,!OceanView New Remodel Near ConventionCtr Waikiki,2 guests · 1 bedroom · 0 beds · 1 bath,$88,5.0 9 | 7,https://www.airbnb.com/rooms/32848483?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Renovated Charmful Studio in Waikiki,2 guests · Studio · 1 bed · 1 bath,$96,4.75 10 | 8,https://www.airbnb.com/rooms/3386000?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,WAIKIKI CONTEMPORARY STUDIO ★FREE PARKING★ 日本語,3 guests · Studio · 2 beds · 1 bath,$126,4.87 11 | 9,https://www.airbnb.com/rooms/16675875?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Private Modern Luxury Studio Waikiki,2 guests · Studio · 1 bed · 1 bath,$97,4.74 12 | 10,https://www.airbnb.com/rooms/36336266?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Hotel La Croix Bronze One Queen,2 guests · 1 bedroom · 1 bed · 1 private bath,$87,4.45 13 | 11,https://www.airbnb.com/rooms/43519189?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,City View Two Double Beds with Kitchen,4 guests · Studio · 2 beds · 1 private bath,$79,3.67 14 | 12,https://www.airbnb.com/rooms/16125972?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,lovely home for u in Waikiki,2 guests · 1 bedroom · 1 bed · 1 bath,$91,4.38 15 | 13,https://www.airbnb.com/rooms/45304713?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,SPECIAL! Waikiki Bright Studio with View,3 guests · Studio · 1 bed · 1 bath,$77,4.33 16 | 14,https://www.airbnb.com/rooms/39467662?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,"Beach, Park and Zoo one block Away!",2 guests · Studio · 1 bed · 1 bath,$93,4.53 17 | 15,https://www.airbnb.com/rooms/45701148?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,ISLAND PARADISE CONDO (FULLY RENOVATED) with View,4 guests · Studio · 1 bed · 1 bath,$115,5.0 18 | 16,https://www.airbnb.com/rooms/21373363?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Renovated unit with a beautiful view,2 guests · 1 bedroom · 1 bed · 1 private bath,$100,4.87 19 | 17,https://www.airbnb.com/rooms/37535565?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Modern Magic and steps to Waikiki Beach Water,2 guests · Studio · 1 bed · 1 bath,$123,4.84 20 | 18,https://www.airbnb.com/rooms/36848205?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,"Best Value, Near Beach, Pool view 1 King or 2 Dbl",3 guests · Studio · 2 beds · 1 bath,$78,3.99 21 | 19,https://www.airbnb.com/rooms/1726142?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,19B | Honu Bedroom for 1-2 | Shared Apartment,2 guests · 1 bedroom · 1 bed · 1 shared bath,$74,4.59 22 | 20,https://www.airbnb.com/rooms/16348150?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c9ce4ec7-4955-4b7d-b368-f7c5fada76bf,Modern Studio Across the Street from Waikiki Beach,3 guests · Studio · 2 beds · 1 bath,$134,4.89 23 | 21,https://www.airbnb.com/rooms/13564551?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,"Best Value, Best Location! - KVII406A",2 guests · Studio · 1 bed · 1 bath,$88,4.48 24 | 22,https://www.airbnb.com/rooms/21373363?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Renovated unit with a beautiful view,2 guests · 1 bedroom · 1 bed · 1 private bath,$100,4.87 25 | 23,https://www.airbnb.com/rooms/27466787?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,"Near Ala Moana Center, FREE Parking, 2 Double beds",4 guests · 1 bedroom · 2 beds · 1 private bath,$104,4.51 26 | 24,https://www.airbnb.com/rooms/37535565?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Modern Magic and steps to Waikiki Beach Water,2 guests · Studio · 1 bed · 1 bath,$123,4.84 27 | 25,https://www.airbnb.com/rooms/44617678?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Central Cozy Studio | Vivid Views of Waikiki | Pkg,2 guests · Studio · 1 bed · 1 bath,$120,5.0 28 | 26,https://www.airbnb.com/rooms/20437001?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,STEPS FROM BEACH 2QUEEN-BED FREE PARKING/WiFi/POOL,5 guests · Studio · 2 beds · 1 bath,$139,4.85 29 | 27,https://www.airbnb.com/rooms/23079048?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Modern/Surf Condo in IDEAL LOCATION *Legal Airbnb*,2 guests · 1 bedroom · 1 bed · 1 bath,$212,4.97 30 | 28,https://www.airbnb.com/rooms/11572664?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Honeymoon suite style room,2 guests · Studio · 1 bed · 1 bath,$104,4.72 31 | 29,https://www.airbnb.com/rooms/1726142?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,19B | Honu Bedroom for 1-2 | Shared Apartment,2 guests · 1 bedroom · 1 bed · 1 shared bath,$74,4.59 32 | 30,https://www.airbnb.com/rooms/34508652?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,1003A - WAIKIKI GEM!!! NEW CEILING FAN!!-,3 guests · Studio · 2 beds · 1 bath,$113,4.63 33 | 31,https://www.airbnb.com/rooms/16348150?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Modern Studio Across the Street from Waikiki Beach,3 guests · Studio · 2 beds · 1 bath,$134,4.89 34 | 32,https://www.airbnb.com/rooms/39448066?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Brand New Queen Studio by the Beach Waikiki,2 guests · Studio · 1 bed · 1 bath,$96,4.55 35 | 33,https://www.airbnb.com/rooms/35876507?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Secluded Diamond Head View Jungle Getaway!,4 guests · 1 bedroom · 2 beds · 1 bath,$275,4.66 36 | 34,https://www.airbnb.com/rooms/36518006?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Waikiki 1BD. GEM w/Free Parking & Mod Inter&Lanai,2 guests · 1 bedroom · 1 bed · 1 bath,$164,4.82 37 | 35,https://www.airbnb.com/rooms/8256435?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,Waikiki Condo with Free Parking,2 guests · 1 bedroom · 1 bed · 1 bath,$133,4.91 38 | 36,https://www.airbnb.com/rooms/36806273?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a346212e-6671-4c4c-90d2-06d50ed2f9b2,"Best Value, steps to beach, 1 Queen or 2 Twins",3 guests · Studio · 2 beds · 1 bath,$78,3.73 39 | 37,https://www.airbnb.com/rooms/36806273?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,"Best Value, steps to beach, 1 Queen or 2 Twins",3 guests · Studio · 2 beds · 1 bath,$78,3.73 40 | 38,https://www.airbnb.com/rooms/39819213?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,AS15-Corner unit*Bright and Airy*Walk2beach*,2 guests · Studio · 2 beds · 1 bath,$101,4.36 41 | 39,https://www.airbnb.com/rooms/36518006?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,Waikiki 1BD. GEM w/Free Parking & Mod Inter&Lanai,2 guests · 1 bedroom · 1 bed · 1 bath,$164,4.82 42 | 40,https://www.airbnb.com/rooms/37655419?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,PANORAMIC OCEANVIEW ON HIGH FLOOR STEPS FROM BEACH,4 guests · Studio · 2 beds · 1 bath,$161,4.73 43 | 41,https://www.airbnb.com/rooms/39419044?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,In the Heart of WAIKIKI is a Spacious 1 Bedroom Suite that can accomodate up to 4 Guests!,4 guests · 1 bedroom · 2 beds · 1 bath,$144,4.73 44 | 42,https://www.airbnb.com/rooms/34692410?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,"Waikiki Ease w/Lanai, WiFi, TV, AC, Ceiling Fan, Microwave+Mini-Frig–Waikiki Grand 303",3 guests · Studio · 1 bed · 1 bath,$113,4.50 45 | 43,https://www.airbnb.com/rooms/8190377?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,Diamond Head Plumeria Studio,2 guests · 1 bedroom · 0 beds · 1 bath,$174,4.76 46 | 44,https://www.airbnb.com/rooms/34508652?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,1003A - WAIKIKI GEM!!! NEW CEILING FAN!!-,3 guests · Studio · 2 beds · 1 bath,$113,4.63 47 | 45,https://www.airbnb.com/rooms/8256435?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,Waikiki Condo with Free Parking,2 guests · 1 bedroom · 1 bed · 1 bath,$133,4.91 48 | 46,https://www.airbnb.com/rooms/35876507?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,Secluded Diamond Head View Jungle Getaway!,4 guests · 1 bedroom · 2 beds · 1 bath,$275,4.66 49 | 47,https://www.airbnb.com/rooms/28564926?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,"Ocean view penthouse, wrap around lanai, free wifi",4 guests · 1 bedroom · 1 bed · 1 bath,$105,4.75 50 | 48,https://www.airbnb.com/rooms/17513921?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,Stunning Ocean view 37th Floor Corner Unit 3703A,3 guests · Studio · 1 bed · 1 bath,$114,4.60 51 | 49,https://www.airbnb.com/rooms/46053256?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,440 Olohana St #1605,2 guests · Studio · 3 beds · 1 bath,$111,4.67 52 | 50,https://www.airbnb.com/rooms/22493806?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=2a2ab118-1bb3-417b-85cb-5d8c5c0c43cc,*EARLY CK-IN* 1004 ** BLUE OASIS **,2 guests · Studio · 1 bed · 1 bath,$101,4.41 53 | 51,https://www.airbnb.com/rooms/37655419?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,PANORAMIC OCEANVIEW ON HIGH FLOOR STEPS FROM BEACH,4 guests · Studio · 2 beds · 1 bath,$161,4.73 54 | 52,https://www.airbnb.com/rooms/46109843?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,**Luana Waikiki**2 Queen beds**,4 guests · Studio · 2 beds · 1 bath,$113,4.75 55 | 53,https://www.airbnb.com/rooms/8190377?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,Diamond Head Plumeria Studio,2 guests · 1 bedroom · 0 beds · 1 bath,$174,4.76 56 | 54,https://www.airbnb.com/rooms/11556426?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,Waikiki Hotel/Condo Studio,4 guests · Studio · 2 beds · 1 bath,$103,4.86 57 | 55,https://www.airbnb.com/rooms/45495103?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,Elegant Fully Furnished Condo in Downtown Honolulu,3 guests · 1 bedroom · 1 bed · 1 bath,$117,5.0 58 | 56,https://www.airbnb.com/rooms/12070115?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,KV201A Waikiki 2450 Prince Edward St Honolulu,2 guests · Studio · 1 bed · 1 bath,$82,4.27 59 | 57,https://www.airbnb.com/rooms/21504805?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,Studio with Ocean Views | 1 Block to Beach | WiFi,4 guests · 1 bedroom · 2 beds · 1 bath,$137,4.73 60 | 58,https://www.airbnb.com/rooms/40309506?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,"Diamond Head View, 2 Twins or 1 Queen Bed",2 guests · 1 bedroom · 2 beds · 1 private bath,$119,4.0 61 | 59,https://www.airbnb.com/rooms/29127537?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,IP21*BREATHTAKING VIEWS*NEW STUDIO W/FREE PARKING*,2 guests · Studio · 1 bed · 1 bath,$159,4.68 62 | 60,https://www.airbnb.com/rooms/34692410?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,"Waikiki Ease w/Lanai, WiFi, TV, AC, Ceiling Fan, Microwave+Mini-Frig–Waikiki Grand 303",3 guests · Studio · 1 bed · 1 bath,$113,4.50 63 | 61,https://www.airbnb.com/rooms/47075361?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,1004A Hawaiian BEAUTY!!,3 guests · Studio · 2 beds · 1 bath,$98,4.57 64 | 62,https://www.airbnb.com/rooms/38518415?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,"Partial Ocean View, Free Parking & WiFi WB2410T2",4 guests · 1 bedroom · 3 beds · 1 bath,$145,4.75 65 | 63,https://www.airbnb.com/rooms/19530374?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,"Fab ""Surfer's Condo"", Close to Beach Sleeps 4",4 guests · 1 bedroom · 2 beds · 1 bath,$125,4.68 66 | 64,https://www.airbnb.com/rooms/21165252?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,HEART OF WAIKIKI~FREE PARKING & WIFI~PERFECT! 1603,4 guests · Studio · 2 beds · 1 bath,$153,4.67 67 | 65,https://www.airbnb.com/rooms/35702279?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=cc66073a-0f77-4a77-8e7e-418fcbeec59c,PANORAMIC OCEANVIEW ON HIGH FLOOR STEPS FROM BEACH,5 guests · Studio · 2 beds · 1 bath,$161,4.70 68 | 66,https://www.airbnb.com/rooms/26820517?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,High Floor Bright Studio w/ Great View in Waikiki,4 guests · Studio · 2 beds · 1 bath,$128,4.64 69 | 67,https://www.airbnb.com/rooms/11573577?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,Double Bed Waikiki Studio. High FL,4 guests · Studio · 2 beds · 1 bath,$96,4.90 70 | 68,https://www.airbnb.com/rooms/29127537?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,IP21*BREATHTAKING VIEWS*NEW STUDIO W/FREE PARKING*,2 guests · Studio · 1 bed · 1 bath,$159,4.68 71 | 69,https://www.airbnb.com/rooms/36336575?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,"Hotel LaCroix, 1 Queen, Free Parking",2 guests · 1 bedroom · 1 bed · 1 bath,$119,4.58 72 | 70,https://www.airbnb.com/rooms/21550530?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,IH805 Waikiki 1777 Ala Moana Blvd Honolulu,4 guests · Studio · 1 bed · 1 bath,$123,4.33 73 | 71,https://www.airbnb.com/rooms/47075361?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,1004A Hawaiian BEAUTY!!,3 guests · Studio · 2 beds · 1 bath,$98,4.57 74 | 72,https://www.airbnb.com/hotels/41740619?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,Alohilani Resort Waikiki Beach,12 room types · 839 total rooms on property,$212,4.67 75 | 73,https://www.airbnb.com/rooms/35694715?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,PANORAMIC OCEANVIEW ON HIGH FLOOR STEPS FROM BEACH,5 guests · Studio · 2 beds · 1 bath,$161,4.82 76 | 74,https://www.airbnb.com/rooms/40309506?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,"Diamond Head View, 2 Twins or 1 Queen Bed",2 guests · 1 bedroom · 2 beds · 1 private bath,$119,4.0 77 | 75,https://www.airbnb.com/rooms/37751780?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,F-KV *Best LOCATION!! 1 block to BEACH,2 guests · Studio · 1 bed · 1 bath,$121,4.72 78 | 76,https://www.airbnb.com/rooms/19965793?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,High floor Panoramic Ocean View Waikiki Marina,2 guests · Studio · 2 beds · 1 bath,$140,4.08 79 | 77,https://www.airbnb.com/rooms/13139520?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,Paradise in Hawaii- 2 Bed/2 Bath,5 guests · 2 bedrooms · 3 beds · 2 baths,$222,4.87 80 | 78,https://www.airbnb.com/rooms/2303459?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,LEGAL RENTAL-BEAUTIFUL OCEAN VIEW LIVING!!! *111,2 guests · Studio · 1 bed · 1 bath,$111,4.65 81 | 79,https://www.airbnb.com/rooms/38518415?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=108cda05-7b72-46dc-adb4-3026de4b9391,"Partial Ocean View, Free Parking & WiFi WB2410T2",4 guests · 1 bedroom · 3 beds · 1 bath,$145,4.75 82 | 80,https://www.airbnb.com/rooms/19530374?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,"Fab ""Surfer's Condo"", Close to Beach Sleeps 4",4 guests · 1 bedroom · 2 beds · 1 bath,$125,4.68 83 | 81,https://www.airbnb.com/rooms/31385530?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,907 BLUE SAPPHIRE in PARADISE!!,2 guests · Studio · 1 bed · 1 bath,$105,4.61 84 | 82,https://www.airbnb.com/rooms/39929118?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,Luxurious Lanai Studio Suite in Waikiki,4 guests · Studio · 2 beds · 1 private bath,$179,5.0 85 | 83,https://www.airbnb.com/rooms/17896779?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,"Studio w/ hardwood floors, ocean views - shared pool/hot tub/sauna",3 guests · Studio · 2 beds · 1 bath,$146,4.38 86 | 84,https://www.airbnb.com/rooms/21026015?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,AS1209 Waikiki 444 Kanekapolei St Honolulu,4 guests · Studio · 1 bed · 1 bath,$112,4.37 87 | 85,https://www.airbnb.com/rooms/34749328?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,"Coconut Waikiki Hotel, City View Queen",2 guests · 1 bedroom · 1 bed · 1 shared bath,$119,4.73 88 | 86,https://www.airbnb.com/rooms/35694715?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,PANORAMIC OCEANVIEW ON HIGH FLOOR STEPS FROM BEACH,5 guests · Studio · 2 beds · 1 bath,$161,4.82 89 | 87,https://www.airbnb.com/rooms/11480020?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,Heart of Downtown-Parking Included,4 guests · 1 bedroom · 2 beds · 1 bath,$149,4.56 90 | 88,https://www.airbnb.com/rooms/38623231?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,IP15-Waikiki Beach&Park Views*Walk to Beach,2 guests · Studio · 1 bed · 1 bath,$144,4.70 91 | 89,https://www.airbnb.com/rooms/36336575?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,"Hotel LaCroix, 1 Queen, Free Parking",2 guests · 1 bedroom · 1 bed · 1 bath,$119,4.58 92 | 90,https://www.airbnb.com/rooms/36915372?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=90272a6a-b07b-476a-b179-395799143904,"Best Value, Near Beach, 1 BR 1 King and Sofa Bed",3 guests · 1 bedroom · 2 beds · 1 bath,$87,3.79 93 | 91,https://www.airbnb.com/rooms/11572223?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,Comfy Waikiki Studio with 2 beds,4 guests · Studio · 2 beds · 1 bath,$103,4.69 94 | 92,https://www.airbnb.com/rooms/38623231?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,IP15-Waikiki Beach&Park Views*Walk to Beach,2 guests · Studio · 1 bed · 1 bath,$144,4.70 95 | 93,https://www.airbnb.com/rooms/2303459?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,LEGAL RENTAL-BEAUTIFUL OCEAN VIEW LIVING!!! *111,2 guests · Studio · 1 bed · 1 bath,$111,4.65 96 | 94,https://www.airbnb.com/rooms/36915372?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,"Best Value, Near Beach, 1 BR 1 King and Sofa Bed",3 guests · 1 bedroom · 2 beds · 1 bath,$87,3.79 97 | 95,https://www.airbnb.com/rooms/22585910?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,Waikiki Shore unit 705 Ocean and Beach Views,2 guests · 1 bedroom · 1 bed · 1 bath,$255,5.0 98 | 96,https://www.airbnb.com/rooms/39848153?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,Luxurious Lanai Studio Suite in Waikiki,4 guests · Studio · 2 beds · 1 private bath,$179,4.86 99 | 97,https://www.airbnb.com/rooms/36336575?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,"Hotel LaCroix, 1 Queen, Free Parking",2 guests · 1 bedroom · 1 bed · 1 bath,$119,4.58 100 | 98,https://www.airbnb.com/rooms/16099777?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,Hotel Type 21th Floor Ocean View! Ala Moana(AH10),2 guests · Studio · 2 beds · 1 bath,$133,4.27 101 | 99,https://www.airbnb.com/rooms/32406742?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,Park View Room at Diamond Head,3 guests · 1 bedroom · 1 bed · 1 bath,$204,4.75 102 | 100,https://www.airbnb.com/rooms/21026015?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,AS1209 Waikiki 444 Kanekapolei St Honolulu,4 guests · Studio · 1 bed · 1 bath,$112,4.37 103 | 101,https://www.airbnb.com/rooms/42045387?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,2 Bedrooms w/ View of Diamond Head & Free Parking!,6 guests · 2 bedrooms · 3 beds · 1 private bath,$292,4.67 104 | 102,https://www.airbnb.com/rooms/35583943?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,"810 BEAUTIFUL WOOD, AMAZING PARADISE",3 guests · Studio · 2 beds · 1 bath,$112,4.69 105 | 103,https://www.airbnb.com/rooms/5386028?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=e6c7b448-4287-45ea-a2c9-8cd40929b0b4,LEGAL RENTAL-STEPS to BEACH!!! *41,2 guests · Studio · 1 bed · 1 bath,$93,4.71 106 | 104,https://www.airbnb.com/rooms/18262128?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,"Hip Hawaii Vibe w/AC, WiFi, Flat Screen, Lanai, Modern Kitchenette–Waikiki Grand 904",2 guests · Studio · 1 bed · 1 bath,$115,4.40 107 | 105,https://www.airbnb.com/rooms/32901030?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,★Pool★2min→Waikiki Beach★Balcony★A/C★Sleeps 3-a5,3 guests · Studio · 2 beds · 1 bath,$93,4.43 108 | 106,https://www.airbnb.com/rooms/11572938?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,Cozy Waikiki Studio,4 guests · Studio · 2 beds · 1 bath,$105,4.45 109 | 107,https://www.airbnb.com/rooms/16132105?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,★★ STUDIO ★★ Near Kahanamoku Beach & Boardwalk,2 guests · Studio · 1 bed · 1 bath,$184,5.0 110 | 108,https://www.airbnb.com/rooms/37778935?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,IP16-Waikiki Beach*Walk to Beach/shop,2 guests · Studio · 1 bed · 1 bath,$135,4.42 111 | 109,https://www.airbnb.com/rooms/31812294?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,BEST RATE! Ocean View Ala Moana Condo (AH01),2 guests · Studio · 1 bed · 1 bath,$133,4.21 112 | 110,https://www.airbnb.com/rooms/42973883?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,Discounted Ocean front Paradise!Minutes to Waikiki,10 guests · 4 bedrooms · 4 beds · 4 baths,"$1,149",4.67 113 | 111,https://www.airbnb.com/rooms/37053173?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,"Luxe Royal Garden-Ocean Views, Designer Appointed",6 guests · 2 bedrooms · 4 beds · 2 baths,$343,4.88 114 | 112,https://www.airbnb.com/rooms/23363725?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,"Cozy suite with expansive views, shared pool and hot tub, near beach!",4 guests · Studio · 2 beds · 1 bath,$143,4.40 115 | 113,https://www.airbnb.com/rooms/41049059?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,"BEST LOCATION, RENOVATED & LEGAL!",3 guests · Studio · 1 bed · 1 bath,$155,4.69 116 | 114,https://www.airbnb.com/rooms/34546249?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bc497fea-8df9-43a5-8b43-89a5bcaf321c,Restful Waikiki comfort near the Ocean & Marina,4 guests · Studio · 2 beds · 1 bath,$109,4.46 117 | 115,https://www.airbnb.com/rooms/4616238?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,Panoramic Waikiki Penthouse,6 guests · 3 bedrooms · 4 beds · 2 baths,$537,4.65 118 | 116,https://www.airbnb.com/rooms/45185174?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,Hole in the wall,4 guests · Studio · 0 beds · 1 shared bath,$79,5.0 119 | 117,https://www.airbnb.com/rooms/23363725?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,"Cozy suite with expansive views, shared pool and hot tub, near beach!",4 guests · Studio · 2 beds · 1 bath,$143,4.40 120 | 118,https://www.airbnb.com/rooms/11572223?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,Comfy Waikiki Studio with 2 beds,4 guests · Studio · 2 beds · 1 bath,$103,4.69 121 | 119,https://www.airbnb.com/rooms/26751597?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,Full Kitchen Queen Bed plus Futon - Bamboo Waikiki,3 guests · Studio · 2 beds · 1 bath,$160,4.52 122 | 120,https://www.airbnb.com/rooms/41049059?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,"BEST LOCATION, RENOVATED & LEGAL!",3 guests · Studio · 1 bed · 1 bath,$155,4.69 123 | 121,https://www.airbnb.com/rooms/8473997?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,The Delightful Bamboo Suite 308 Close to Beach,4 guests · Studio · 2 beds · 1 bath,$109,4.41 124 | 122,https://www.airbnb.com/rooms/29541734?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,"Lagoon & Ocean Views, FREE WiFi & Parking! IL724",4 guests · Studio · 2 beds · 1 bath,$291,5.0 125 | 123,https://www.airbnb.com/rooms/39533085?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c94f647c-cce8-4bfb-8199-05c0ded94310,Platinum Skyline Penthouse with Kitchenette,2 guests · 1 bedroom · 1 bed · 1 bath,$184,4.0 126 | 124,https://www.airbnb.com/rooms/15218626?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,"Deluxe studio w/ kitchenette, furnished lanai, shared pool/hot tub",4 guests · Studio · 2 beds · 1 bath,$153,4.32 127 | 125,https://www.airbnb.com/rooms/29541734?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,"Lagoon & Ocean Views, FREE WiFi & Parking! IL724",4 guests · Studio · 2 beds · 1 bath,$291,5.0 128 | 126,https://www.airbnb.com/rooms/28810868?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,Beautiful Studio in Waikiki W/Ocean View & Parking,2 guests · Studio · 0 beds · 1 bath,$170,4.62 129 | 127,https://www.airbnb.com/rooms/26751597?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,Full Kitchen Queen Bed plus Futon - Bamboo Waikiki,3 guests · Studio · 2 beds · 1 bath,$160,4.52 130 | 128,https://www.airbnb.com/rooms/11573645?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,Waikiki Studio! High FL,4 guests · Studio · 2 beds · 1 bath,$105,4.67 131 | 129,https://www.airbnb.com/rooms/12782657?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,"High Floor, Partial Ocean View, Parking, MS2008!",2 guests · Studio · 1 bed · 1 bath,$184,5.0 132 | 130,https://www.airbnb.com/rooms/40661828?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,Ocean View from Lanais-Walk to Beach-Free Parking,7 guests · 2 bedrooms · 3 beds · 2 baths,$373,4.86 133 | 131,https://www.airbnb.com/rooms/32471740?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,Partial Ocean View Room at Diamond Head,3 guests · 1 bedroom · 1 bed · 1 bath,$216,5.0 134 | 132,https://www.airbnb.com/rooms/26196712?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=d72b44ab-166b-4042-bf33-390bb8a4a30e,"""Special Rate"" Spacious Clean Studio Apartment| Sleeps: Studio, 1 Bathroom",4 guests · Studio · 2 beds · 1 bath,$187,4.40 135 | 133,https://www.airbnb.com/rooms/40661828?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=358d6245-6840-4091-aa5e-03f5f0ad5097,Ocean View from Lanais-Walk to Beach-Free Parking,7 guests · 2 bedrooms · 3 beds · 2 baths,$373,4.86 136 | 134,https://www.airbnb.com/rooms/11593814?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=358d6245-6840-4091-aa5e-03f5f0ad5097,Discover the best kept secret on Oahu - super host,4 guests · 1 bedroom · 1 bed · 1 shared bath,$171,4.88 137 | 135,https://www.airbnb.com/rooms/41093704?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=358d6245-6840-4091-aa5e-03f5f0ad5097,Studio Suite on the world-famous Waikiki Beach,4 guests · Studio · 2 beds · 1 bath,$248,5.0 138 | 136,https://www.airbnb.com/rooms/17515987?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=358d6245-6840-4091-aa5e-03f5f0ad5097,Spacious Stunning Oceanview Waikiki Studio Aloha!,3 guests · Studio · 1 bed · 1 bath,$146,4.61 139 | 137,https://www.airbnb.com/rooms/32575514?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=358d6245-6840-4091-aa5e-03f5f0ad5097,Luxurious Lanai Studio Suite in Waikiki,4 guests · Studio · 2 beds · 1 private bath,$179,5.0 140 | 138,https://www.airbnb.com/rooms/45185174?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,Hole in the wall,4 guests · Studio · 0 beds · 1 shared bath,$79,5.0 141 | 139,https://www.airbnb.com/rooms/18551621?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,1/2 block to Waikiki Beach OCEANVIEW in every room,6 guests · 2 bedrooms · 3 beds · 2 baths,$459,4.70 142 | 140,https://www.airbnb.com/rooms/7475910?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,Luxury Studio w/ Spectacular City and Canal views,2 guests · Studio · 1 bed · 1 bath,$184,4.76 143 | 141,https://www.airbnb.com/rooms/16132105?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,★★ STUDIO ★★ Near Kahanamoku Beach & Boardwalk,2 guests · Studio · 1 bed · 1 bath,$184,5.0 144 | 142,https://www.airbnb.com/rooms/26196712?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,"""Special Rate"" Spacious Clean Studio Apartment| Sleeps: Studio, 1 Bathroom",4 guests · Studio · 2 beds · 1 bath,$187,4.40 145 | 143,https://www.airbnb.com/rooms/40661828?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,Ocean View from Lanais-Walk to Beach-Free Parking,7 guests · 2 bedrooms · 3 beds · 2 baths,$373,4.86 146 | 144,https://www.airbnb.com/rooms/40992274?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,Superior one bedroom suite in the heart of Waikiki,6 guests · 1 bedroom · 3 beds · 1 bath,$230,4.83 147 | 145,https://www.airbnb.com/rooms/8388203?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=c0fb847e-d373-4327-bf1a-facf8f268ed2,"Cozy Furnished Waikiki Beach Studio 148 | 1850 Ala Moana",4 guests · Studio · 2 beds · 1 bath,$161,4.81 149 | 146,https://www.airbnb.com/rooms/32810482?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=50829a6c-987e-4cf9-af20-2270844e1b72,Waikiki Shore 515 Oceanview,2 guests · Studio · 1 bed · 1 bath,$391,5.0 150 | 147,https://www.airbnb.com/rooms/39228175?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=50829a6c-987e-4cf9-af20-2270844e1b72,Cozy canalside suite w/ great shared amenities - walk to Waikiki Beach!,2 guests · Studio · 1 bed · 1 bath,$132,3.0 151 | 148,https://www.airbnb.com/rooms/36209853?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=50829a6c-987e-4cf9-af20-2270844e1b72,Premium Royal Garden 2/2 Condo with Ocean Views!,6 guests · 2 bedrooms · 4 beds · 2 baths,$433,4.74 152 | 149,https://www.airbnb.com/rooms/24395506?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=50829a6c-987e-4cf9-af20-2270844e1b72,1BR Amazing MTN Views! Free Parking and WiFi!,4 guests · 1 bedroom · 2 beds · 1 bath,$307,4.80 153 | 150,https://www.airbnb.com/rooms/33526748?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=50829a6c-987e-4cf9-af20-2270844e1b72,"Downtown studio w/a furnished balcony, city views, shared pool - walk everywhere",4 guests · Studio · 2 beds · 1 bath,$127,3.43 154 | 151,https://www.airbnb.com/rooms/17978018?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=50829a6c-987e-4cf9-af20-2270844e1b72,"Studio, kitchenette, A/C, Pool, FREE pkg | MS#701",2 guests · Studio · 1 bed · 1 bath,$183,4.57 155 | 152,https://www.airbnb.com/rooms/2250865?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Luxury Studio Luana Waikiki #414 100% LEGAL,4 guests · 1 bedroom · 2 beds · 1 private bath,$134,4.60 156 | 153,https://www.airbnb.com/rooms/6387723?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Waikiki Penthouse with parking/wifi,6 guests · 1 bedroom · 2 beds · 1 bath,$207,4.22 157 | 154,https://www.airbnb.com/hotels/41740619?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Alohilani Resort Waikiki Beach,12 room types · 839 total rooms on property,$212,4.67 158 | 155,https://www.airbnb.com/rooms/30155898?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Superhost* Ilikai Marina Modern Artistic Waikiki,3 guests · Studio · 1 bed · 1 bath,$173,4.75 159 | 156,https://www.airbnb.com/rooms/32471740?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Partial Ocean View Room at Diamond Head,3 guests · 1 bedroom · 1 bed · 1 bath,$216,5.0 160 | 157,https://www.airbnb.com/rooms/13019920?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Fabulous Tina's Waikiki Beach-Parking Included,4 guests · 2 bedrooms · 3 beds · 2 baths,$552,4.85 161 | 158,https://www.airbnb.com/rooms/4616238?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Panoramic Waikiki Penthouse,6 guests · 3 bedrooms · 4 beds · 2 baths,$537,4.65 162 | 159,https://www.airbnb.com/rooms/32575514?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=a7d953e2-c2ef-464f-89de-36629c637ba5,Luxurious Lanai Studio Suite in Waikiki,4 guests · Studio · 2 beds · 1 private bath,$179,5.0 163 | 160,https://www.airbnb.com/rooms/18027859?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bce9499a-37e6-40dd-aaa6-b8986a6e88f4,"High Style w/Amazing Ocean View, Modern Kitchen, Free WiFi–Waikiki Shore #PH06",4 guests · 1 bedroom · 1 bed · 2 baths,$625,4.86 164 | 161,https://www.airbnb.com/rooms/36209853?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bce9499a-37e6-40dd-aaa6-b8986a6e88f4,Premium Royal Garden 2/2 Condo with Ocean Views!,6 guests · 2 bedrooms · 4 beds · 2 baths,$433,4.74 165 | 162,https://www.airbnb.com/rooms/40828454?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bce9499a-37e6-40dd-aaa6-b8986a6e88f4,Ala moana hotel & beautiful ocean view near waikik,4 guests · Studio · 2 beds · 1 shared bath,$157,4.55 166 | 163,https://www.airbnb.com/rooms/28490961?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bce9499a-37e6-40dd-aaa6-b8986a6e88f4,Private Room 2 Twins near HNL Airport,2 guests · 1 bedroom · 0 beds · 1 private bath,$113,4.17 167 | 164,https://www.airbnb.com/rooms/44871550?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bce9499a-37e6-40dd-aaa6-b8986a6e88f4,OCEAN VIEW cute little room,3 guests · 1 bedroom · 1 bed · 1 bath,$127,4.33 168 | 165,https://www.airbnb.com/rooms/17667861?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bce9499a-37e6-40dd-aaa6-b8986a6e88f4,Killer Ocean Views - Ilikai Marina,3 guests · 1 bedroom · 1 bed · 1 bath,$341,4.91 169 | 166,https://www.airbnb.com/rooms/21179848?check_in=2021-02-28&check_out=2021-03-05&previous_page_section_name=1000&federated_search_id=bce9499a-37e6-40dd-aaa6-b8986a6e88f4,waikiki Ocean View,5 guests · 1 bedroom · 2 beds · 1 private bath,$209,4.48 170 | -------------------------------------------------------------------------------- /Scraped-Data/carpages_scraped_data.csv: -------------------------------------------------------------------------------- 1 | ,Links,Title,Price,Color 2 | 0,,,, 3 | 1,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 4 | 2,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 5 | 3,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 6 | 4,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 7 | 5,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 8 | 6,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 9 | 7,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 10 | 8,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 11 | 9,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 12 | 10,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 13 | 11,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 14 | 12,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 15 | 13,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 16 | 14,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 17 | 15,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 18 | 16,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 19 | 17,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 20 | 18,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 21 | 19,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 22 | 20,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 23 | 21,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 24 | 22,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 25 | 23,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 26 | 24,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 27 | 25,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 28 | 26,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 29 | 27,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 30 | 28,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 31 | 29,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 32 | 30,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 33 | 31,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 34 | 32,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 35 | 33,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 36 | 34,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 37 | 35,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 38 | 36,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 39 | 37,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 40 | 38,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 41 | 39,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 42 | 40,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 43 | 41,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 44 | 42,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 45 | 43,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 46 | 44,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 47 | 45,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 48 | 46,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 49 | 47,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 50 | 48,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 51 | 49,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 52 | 50,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 53 | 51,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 54 | 52,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 55 | 53,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 56 | 54,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 57 | 55,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 58 | 56,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 59 | 57,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 60 | 58,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 61 | 59,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 62 | 60,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 63 | 61,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 64 | 62,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 65 | 63,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 66 | 64,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 67 | 65,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 68 | 66,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 69 | 67,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 70 | 68,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 71 | 69,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 72 | 70,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 73 | 71,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 74 | 72,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 75 | 73,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 76 | 74,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 77 | 75,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 78 | 76,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 79 | 77,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 80 | 78,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 81 | 79,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 82 | 80,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 83 | 81,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 84 | 82,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 85 | 83,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 86 | 84,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 87 | 85,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 88 | 86,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 89 | 87,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 90 | 88,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 91 | 89,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 92 | 90,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 93 | 91,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 94 | 92,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 95 | 93,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 96 | 94,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 97 | 95,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 98 | 96,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 99 | 97,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 100 | 98,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 101 | 99,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 102 | 100,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 103 | 101,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 104 | 102,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 105 | 103,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 106 | 104,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 107 | 105,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 108 | 106,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 109 | 107,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 110 | 108,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 111 | 109,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 112 | 110,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 113 | 111,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 114 | 112,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 115 | 113,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 116 | 114,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 117 | 115,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 118 | 116,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 119 | 117,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 120 | 118,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 121 | 119,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 122 | 120,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 123 | 121,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 124 | 122,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 125 | 123,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 126 | 124,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 127 | 125,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 128 | 126,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 129 | 127,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 130 | 128,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 131 | 129,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 132 | 130,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 133 | 131,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 134 | 132,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 135 | 133,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 136 | 134,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 137 | 135,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 138 | 136,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 139 | 137,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 140 | 138,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 141 | 139,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 142 | 140,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 143 | 141,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 144 | 142,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 145 | 143,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 146 | 144,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 147 | 145,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 148 | 146,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 149 | 147,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 150 | 148,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 151 | 149,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 152 | 150,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 153 | 151,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 154 | 152,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 155 | 153,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 156 | 154,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 157 | 155,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 158 | 156,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 159 | 157,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 160 | 158,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 161 | 159,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 162 | 160,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 163 | 161,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 164 | 162,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 165 | 163,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 166 | 164,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 167 | 165,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 168 | 166,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 169 | 167,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 170 | 168,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 171 | 169,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 172 | 170,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 173 | 171,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 174 | 172,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 175 | 173,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 176 | 174,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 177 | 175,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 178 | 176,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 179 | 177,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 180 | 178,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 181 | 179,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 182 | 180,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 183 | 181,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 184 | 182,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 185 | 183,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 186 | 184,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 187 | 185,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 188 | 186,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 189 | 187,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 190 | 188,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 191 | 189,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 192 | 190,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 193 | 191,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 194 | 192,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 195 | 193,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 196 | 194,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 197 | 195,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 198 | 196,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 199 | 197,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 200 | 198,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 201 | 199,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 202 | 200,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 203 | 201,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 204 | 202,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 205 | 203,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 206 | 204,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 207 | 205,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 208 | 206,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 209 | 207,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 210 | 208,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 211 | 209,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 212 | 210,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 213 | 211,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 214 | 212,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 215 | 213,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 216 | 214,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 217 | 215,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 218 | 216,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 219 | 217,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 220 | 218,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 221 | 219,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 222 | 220,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 223 | 221,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 224 | 222,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 225 | 223,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 226 | 224,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 227 | 225,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 228 | 226,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 229 | 227,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 230 | 228,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 231 | 229,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 232 | 230,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 233 | 231,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 234 | 232,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 235 | 233,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 236 | 234,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 237 | 235,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 238 | 236,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 239 | 237,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 240 | 238,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 241 | 239,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 242 | 240,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 243 | 241,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 244 | 242,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 245 | 243,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 246 | 244,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 247 | 245,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 248 | 246,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 249 | 247,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 250 | 248,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 251 | 249,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 252 | 250,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 253 | 251,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 254 | 252,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 255 | 253,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 256 | 254,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 257 | 255,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 258 | 256,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 259 | 257,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 260 | 258,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 261 | 259,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 262 | 260,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 263 | 261,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 264 | 262,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 265 | 263,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 266 | 264,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 267 | 265,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 268 | 266,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 269 | 267,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 270 | 268,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 271 | 269,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 272 | 270,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 273 | 271,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 274 | 272,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 275 | 273,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 276 | 274,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 277 | 275,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 278 | 276,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 279 | 277,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 280 | 278,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 281 | 279,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 282 | 280,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 283 | 281,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 284 | 282,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 285 | 283,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 286 | 284,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 287 | 285,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 288 | 286,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 289 | 287,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 290 | 288,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 291 | 289,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 292 | 290,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 293 | 291,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 294 | 292,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 295 | 293,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 296 | 294,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 297 | 295,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 298 | 296,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 299 | 297,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 300 | 298,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 301 | 299,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 302 | 300,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 303 | 301,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 304 | 302,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 305 | 303,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 306 | 304,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 307 | 305,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 308 | 306,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 309 | 307,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 310 | 308,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 311 | 309,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 312 | 310,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 313 | 311,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 314 | 312,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 315 | 313,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 316 | 314,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 317 | 315,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 318 | 316,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 319 | 317,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 320 | 318,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 321 | 319,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 322 | 320,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 323 | 321,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 324 | 322,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 325 | 323,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 326 | 324,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 327 | 325,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 328 | 326,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 329 | 327,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 330 | 328,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 331 | 329,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 332 | 330,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 333 | 331,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 334 | 332,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 335 | 333,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 336 | 334,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 337 | 335,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 338 | 336,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 339 | 337,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 340 | 338,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 341 | 339,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 342 | 340,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 343 | 341,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 344 | 342,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 345 | 343,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 346 | 344,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 347 | 345,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 348 | 346,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 349 | 347,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 350 | 348,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 351 | 349,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 352 | 350,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 353 | 351,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 354 | 352,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 355 | 353,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 356 | 354,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 357 | 355,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 358 | 356,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 359 | 357,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 360 | 358,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 361 | 359,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 362 | 360,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 363 | 361,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 364 | 362,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 365 | 363,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 366 | 364,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 367 | 365,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 368 | 366,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 369 | 367,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 370 | 368,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 371 | 369,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 372 | 370,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 373 | 371,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 374 | 372,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 375 | 373,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 376 | 374,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 377 | 375,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 378 | 376,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 379 | 377,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 380 | 378,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 381 | 379,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 382 | 380,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 383 | 381,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 384 | 382,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 385 | 383,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 386 | 384,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 387 | 385,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 388 | 386,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 389 | 387,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 390 | 388,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 391 | 389,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 392 | 390,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 393 | 391,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 394 | 392,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 395 | 393,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 396 | 394,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 397 | 395,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 398 | 396,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 399 | 397,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 400 | 398,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 401 | 399,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 402 | 400,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 403 | 401,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 404 | 402,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 405 | 403,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 406 | 404,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 407 | 405,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 408 | 406,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 409 | 407,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 410 | 408,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 411 | 409,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 412 | 410,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 413 | 411,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 414 | 412,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 415 | 413,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 416 | 414,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 417 | 415,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 418 | 416,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 419 | 417,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 420 | 418,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 421 | 419,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 422 | 420,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 423 | 421,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 424 | 422,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 425 | 423,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 426 | 424,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 427 | 425,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 428 | 426,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 429 | 427,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 430 | 428,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 431 | 429,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 432 | 430,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 433 | 431,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 434 | 432,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 435 | 433,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 436 | 434,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 437 | 435,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 438 | 436,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 439 | 437,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 440 | 438,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 441 | 439,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 442 | 440,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 443 | 441,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 444 | 442,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 445 | 443,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 446 | 444,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 447 | 445,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 448 | 446,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 449 | 447,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 450 | 448,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 451 | 449,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 452 | 450,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 453 | 451,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 454 | 452,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 455 | 453,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 456 | 454,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 457 | 455,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 458 | 456,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 459 | 457,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 460 | 458,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 461 | 459,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 462 | 460,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 463 | 461,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 464 | 462,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 465 | 463,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 466 | 464,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 467 | 465,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 468 | 466,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 469 | 467,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 470 | 468,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 471 | 469,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 472 | 470,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 473 | 471,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 474 | 472,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 475 | 473,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 476 | 474,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 477 | 475,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 478 | 476,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 479 | 477,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 480 | 478,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 481 | 479,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 482 | 480,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 483 | 481,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 484 | 482,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 485 | 483,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 486 | 484,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 487 | 485,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 488 | 486,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 489 | 487,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 490 | 488,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 491 | 489,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 492 | 490,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 493 | 491,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 494 | 492,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 495 | 493,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 496 | 494,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 497 | 495,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 498 | 496,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 499 | 497,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 500 | 498,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 501 | 499,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 502 | 500,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 503 | 501,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 504 | 502,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 505 | 503,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 506 | 504,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 507 | 505,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 508 | 506,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 509 | 507,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 510 | 508,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 511 | 509,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 512 | 510,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 513 | 511,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 514 | 512,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 515 | 513,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 516 | 514,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 517 | 515,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 518 | 516,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 519 | 517,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 520 | 518,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 521 | 519,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 522 | 520,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 523 | 521,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 524 | 522,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 525 | 523,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 526 | 524,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 527 | 525,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 528 | 526,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 529 | 527,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 530 | 528,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 531 | 529,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 532 | 530,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 533 | 531,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 534 | 532,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 535 | 533,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 536 | 534,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 537 | 535,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 538 | 536,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 539 | 537,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 540 | 538,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 541 | 539,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 542 | 540,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 543 | 541,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 544 | 542,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 545 | 543,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 546 | 544,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 547 | 545,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 548 | 546,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 549 | 547,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 550 | 548,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 551 | 549,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 552 | 550,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 553 | 551,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 554 | 552,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 555 | 553,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 556 | 554,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 557 | 555,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 558 | 556,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 559 | 557,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 560 | 558,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 561 | 559,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 562 | 560,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 563 | 561,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 564 | 562,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 565 | 563,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 566 | 564,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 567 | 565,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 568 | 566,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 569 | 567,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 570 | 568,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 571 | 569,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 572 | 570,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 573 | 571,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 574 | 572,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 575 | 573,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 576 | 574,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 577 | 575,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 578 | 576,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 579 | 577,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 580 | 578,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 581 | 579,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 582 | 580,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 583 | 581,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 584 | 582,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 585 | 583,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 586 | 584,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 587 | 585,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 588 | 586,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 589 | 587,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 590 | 588,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 591 | 589,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 592 | 590,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 593 | 591,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 594 | 592,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 595 | 593,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 596 | 594,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 597 | 595,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 598 | 596,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 599 | 597,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 600 | 598,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 601 | 599,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 602 | 600,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 603 | 601,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 604 | 602,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 605 | 603,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 606 | 604,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 607 | 605,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 608 | 606,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 609 | 607,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 610 | 608,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 611 | 609,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 612 | 610,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 613 | 611,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 614 | 612,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 615 | 613,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 616 | 614,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 617 | 615,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 618 | 616,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 619 | 617,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 620 | 618,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 621 | 619,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 622 | 620,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 623 | 621,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 624 | 622,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 625 | 623,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 626 | 624,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 627 | 625,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 628 | 626,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 629 | 627,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 630 | 628,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 631 | 629,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 632 | 630,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 633 | 631,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 634 | 632,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 635 | 633,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 636 | 634,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 637 | 635,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 638 | 636,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 639 | 637,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 640 | 638,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 641 | 639,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 642 | 640,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 643 | 641,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 644 | 642,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 645 | 643,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 646 | 644,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 647 | 645,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 648 | 646,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 649 | 647,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 650 | 648,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 651 | 649,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 652 | 650,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 653 | 651,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 654 | 652,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 655 | 653,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 656 | 654,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 657 | 655,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 658 | 656,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 659 | 657,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 660 | 658,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 661 | 659,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 662 | 660,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 663 | 661,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 664 | 662,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 665 | 663,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 666 | 664,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 667 | 665,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 668 | 666,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 669 | 667,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 670 | 668,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 671 | 669,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 672 | 670,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 673 | 671,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 674 | 672,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 675 | 673,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 676 | 674,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 677 | 675,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 678 | 676,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 679 | 677,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 680 | 678,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 681 | 679,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 682 | 680,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 683 | 681,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 684 | 682,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 685 | 683,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 686 | 684,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 687 | 685,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 688 | 686,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 689 | 687,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 690 | 688,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 691 | 689,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 692 | 690,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 693 | 691,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 694 | 692,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 695 | 693,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 696 | 694,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 697 | 695,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 698 | 696,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 699 | 697,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 700 | 698,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 701 | 699,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 702 | 700,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 703 | 701,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 704 | 702,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 705 | 703,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 706 | 704,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 707 | 705,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 708 | 706,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 709 | 707,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 710 | 708,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 711 | 709,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 712 | 710,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 713 | 711,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 714 | 712,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 715 | 713,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 716 | 714,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 717 | 715,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 718 | 716,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 719 | 717,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 720 | 718,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 721 | 719,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 722 | 720,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 723 | 721,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 724 | 722,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 725 | 723,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 726 | 724,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 727 | 725,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 728 | 726,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 729 | 727,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 730 | 728,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 731 | 729,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 732 | 730,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 733 | 731,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 734 | 732,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 735 | 733,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 736 | 734,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 737 | 735,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 738 | 736,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 739 | 737,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 740 | 738,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 741 | 739,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 742 | 740,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 743 | 741,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 744 | 742,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 745 | 743,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 746 | 744,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 747 | 745,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 748 | 746,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 749 | 747,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 750 | 748,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 751 | 749,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 752 | 750,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 753 | 751,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 754 | 752,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 755 | 753,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 756 | 754,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 757 | 755,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 758 | 756,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 759 | 757,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 760 | 758,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 761 | 759,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 762 | 760,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 763 | 761,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 764 | 762,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 765 | 763,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 766 | 764,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 767 | 765,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 768 | 766,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 769 | 767,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 770 | 768,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 771 | 769,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 772 | 770,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 773 | 771,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 774 | 772,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 775 | 773,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 776 | 774,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 777 | 775,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 778 | 776,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 779 | 777,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 780 | 778,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 781 | 779,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 782 | 780,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 783 | 781,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 784 | 782,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 785 | 783,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 786 | 784,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 787 | 785,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 788 | 786,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 789 | 787,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 790 | 788,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 791 | 789,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 792 | 790,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 793 | 791,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 794 | 792,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 795 | 793,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 796 | 794,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 797 | 795,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 798 | 796,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 799 | 797,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 800 | 798,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 801 | 799,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 802 | 800,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 803 | 801,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 804 | 802,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 805 | 803,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 806 | 804,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 807 | 805,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 808 | 806,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 809 | 807,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 810 | 808,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 811 | 809,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 812 | 810,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 813 | 811,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 814 | 812,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 815 | 813,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 816 | 814,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 817 | 815,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 818 | 816,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 819 | 817,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 820 | 818,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 821 | 819,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 822 | 820,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 823 | 821,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 824 | 822,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 825 | 823,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 826 | 824,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 827 | 825,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 828 | 826,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 829 | 827,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 830 | 828,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 831 | 829,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 832 | 830,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 833 | 831,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 834 | 832,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 835 | 833,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 836 | 834,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 837 | 835,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 838 | 836,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 839 | 837,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 840 | 838,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 841 | 839,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 842 | 840,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 843 | 841,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 844 | 842,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 845 | 843,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 846 | 844,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 847 | 845,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 848 | 846,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 849 | 847,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 850 | 848,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 851 | 849,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 852 | 850,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 853 | 851,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 854 | 852,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 855 | 853,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 856 | 854,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 857 | 855,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 858 | 856,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 859 | 857,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 860 | 858,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 861 | 859,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 862 | 860,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 863 | 861,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 864 | 862,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 865 | 863,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 866 | 864,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 867 | 865,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 868 | 866,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 869 | 867,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 870 | 868,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 871 | 869,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 872 | 870,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 873 | 871,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 874 | 872,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 875 | 873,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 876 | 874,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 877 | 875,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 878 | 876,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 879 | 877,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 880 | 878,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 881 | 879,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 882 | 880,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 883 | 881,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 884 | 882,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 885 | 883,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-a7-6571823/,2021 Audi A7 Sportback Technik,"$103,872",Vesuvius Grey 886 | 884,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-250-6570869/,2021 Ford F-250 Super Duty SRW XLT,"$62,779",Agate Black Metallic 887 | 885,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-explorer-6570863/,2021 Ford Explorer LIMITED,"$59,049",Oxford White 888 | 886,https://www.carpages.ca/new-cars/ontario/sudbury/2021-mercedes-benz-gls-6568718/,2021 Mercedes-Benz GLS GLS 450,"$119,188",Obsidian Black Met 889 | 887,https://www.carpages.ca/used-cars/quebec/montreal/2017-bmw-i3-6568322/,2017 BMW i3 Avec REX/Nav/Mags,"$27,995",Noir 890 | 888,https://www.carpages.ca/new-cars/ontario/kanata/2021-chevrolet-bolt-6567566/,2021 Chevrolet Bolt EV LT,"$48,882", 891 | 889,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566876/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,973",Space Black Pearl 892 | 890,https://www.carpages.ca/new-cars/ontario/simcoe/2021-hyundai-santa-fe-6566873/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,573",Lagoon Blue Mica 893 | 891,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566846/,2021 Hyundai Santa Fe Hybrid Preferred AWD w/Trend Package,"$44,087",Cristal White(ww2-nnb)-black 894 | 892,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566843/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Space Black(nka-sst)-beige 895 | 893,https://www.carpages.ca/new-cars/ontario/brantford/2021-hyundai-santa-fe-6566840/,2021 Hyundai Santa Fe Hybrid Luxury AWD,"$46,687",Bleu Lagon(ue3-sst)-beige 896 | 894,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-toyota-venza-6566708/,2021 Toyota Venza XLE HYBRID,"$47,881", 897 | 895,https://www.carpages.ca/used-cars/ontario/scarborough/2018-kia-soul-ev-6566105/,2018 Kia Soul EV EV Luxury,"$21,990",Grey 898 | 896,https://www.carpages.ca/new-cars/ontario/brantford/2021-ford-escape-6566024/,2021 Ford Escape Titanium Hybrid,"$43,899",Black 899 | 897,https://www.carpages.ca/new-cars/british-columbia/vancouver/2020-kia-niro-6565598/,2020 Kia NIRO EV SX Touring,"$56,390",Aurora Black(ABP) 900 | 898,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565589/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 901 | 899,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565577/,2021 Kia Soul EV Limited,"$53,890",SNOW WHITE PEARL(SWP) 902 | 900,https://www.carpages.ca/new-cars/british-columbia/vancouver/2021-kia-soul-ev-6565565/,2021 Kia Soul EV Limited,"$53,890",ONYX(9H) 903 | 901,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6565268/,2019 Tesla Model 3 STANDARD RANGE PLUS,"$47,995",Black 904 | 902,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564770/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Typhoon Silver 905 | 903,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564761/,2021 Hyundai Santa Fe Hybrid Preferred,"$44,099",Typhoon Silver 906 | 904,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564758/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",Magnetic Force 907 | 905,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564752/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",LAGOON BLUE 908 | 906,https://www.carpages.ca/new-cars/ontario/mississauga/2021-hyundai-santa-fe-6564746/,2021 Hyundai Santa Fe HYBRID Luxury,"$46,499",SPACE BLACK 909 | 907,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563831/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 910 | 908,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563828/,2021 Audi Q5 Technik,"$69,607",Glacier White Metallic 911 | 909,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-audi-q5-6563825/,2021 Audi Q5 Technik,"$69,607",Mythos Black Metallic 912 | 910,https://www.carpages.ca/used-cars/ontario/guelph/2019-ram-1500-6563798/,2019 RAM 1500 Big Horn,"$44,744",FLAME RED 913 | 911,https://www.carpages.ca/used-cars/ontario/belleville/2018-ford-fusion-6563399/,2018 Ford Fusion Energi SE Luxury - HTD LEATHER! NAV! SYNC! FULL PWR GROUP! + MORE!,"$17,495",Grey 914 | 912,https://www.carpages.ca/new-cars/ontario/niagara-falls/2021-ford-f-150-6563174/,2021 Ford F-150 Lariat,"$72,644",Black 915 | 913,https://www.carpages.ca/used-cars/ontario/mississauga/2015-mercedes-benz-c-class-6563075/,2015 Mercedes-Benz C-Class C 300,"$24,796", 916 | 914,https://www.carpages.ca/used-cars/quebec/drummondville/2019-hyundai-kona-6562589/,2019 Hyundai KONA Electric ULTIMATE + GARANTIE + NAVI + TOIT + CUIR,"$29,989",Blanc 917 | 915,https://www.carpages.ca/used-cars/ontario/north-york/2017-tesla-model-x-6562003/,2017 Tesla Model X 75D|AUTOPILOT|HIFI|NAV|GLASSROOF|AIRSUSPENSION|+++,"$77,995",Red 918 | 916,https://www.carpages.ca/used-cars/ontario/oakville/2013-tesla-model-s-6560841/,2013 Tesla Model S S P85 PLUS | PANO | CERTIFIED | FINANCE,"$38,777", 919 | 917,https://www.carpages.ca/used-cars/quebec/st-eustache/2021-hyundai-kona-6560263/,2021 Hyundai KONA Electric EV Preferred,"$34,980",Bleu 920 | 918,https://www.carpages.ca/used-cars/ontario/hamilton/2015-honda-accord-6559629/,2015 Honda Accord EX Hybrid,"$10,999",Gray 921 | 919,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6558948/,2019 Audi Q8 Technik w/Bang & Olufsen & Luxury Package *Very Low KM*,"$95,000",Dragon Orange Metallic 922 | 920,https://www.carpages.ca/new-cars/ontario/hamilton/2021-toyota-rav4-6558852/,2021 Toyota RAV4 Hybrid XLE,"$44,539.70",Grey 923 | 921,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-venza-6558543/,2021 Toyota Venza XLE - Cooled Seats - Navigation - $286 B/W,"$47,212",Blizzard Prl 924 | 922,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-highlander-6558534/,2021 Toyota Highlander - $345 B/W,"$50,917",Clestl Silv Metallic 925 | 923,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558436/,2021 Ford F-150 XLT,"$46,389",Oxford White 926 | 924,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558433/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 927 | 925,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6558421/,2021 Ford F-150 XLT,"$46,389",Agate Black Metallic 928 | 926,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558300/,2021 Ford F-150 XLT,"$52,839",Oxford White 929 | 927,https://www.carpages.ca/new-cars/ontario/ottawa/2021-ford-f-150-6558297/,2021 Ford F-150 XLT,"$52,839",Oxford White 930 | 928,https://www.carpages.ca/new-cars/manitoba/winnipeg/2021-jeep-wrangler-6558066/,2021 Jeep Wrangler Unlimited Willys,"$54,701",Black 931 | 929,https://www.carpages.ca/used-cars/ontario/north-york/2015-bmw-i8-6557980/,2015 BMW i8 FULLY LOADED*NAVIGATION*BACK-UP CAMERA*NO ACCIDENT,"$78,900",Grey 932 | 930,https://www.carpages.ca/used-cars/ontario/thornhill/2017-hyundai-ioniq-6557587/,2017 Hyundai IONIQ Limited,"$19,475","""" 933 | 931,https://www.carpages.ca/used-cars/ontario/etobicoke/2014-toyota-prius-c-6557148/,2014 Toyota Prius c 4 Dr HB Hybrid,"$10,990",Red 934 | 932,https://www.carpages.ca/new-cars/ontario/bracebridge/2021-jeep-wrangler-6556482/,2021 Jeep Wrangler Unlimited Sahara - Navigation,"$58,051",Black 935 | 933,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-ux-6555898/,2021 Lexus UX 250H Premium Package,"$41,722",Atomic Silver 936 | 934,https://www.carpages.ca/new-cars/alberta/fort-saskatchewan/2021-ford-explorer-6555717/,2021 Ford Explorer LIMITED,"$58,449",Black 937 | 935,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555691/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$23,500",Blue 938 | 936,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555688/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",Blue 939 | 937,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555685/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,900",Gray 940 | 938,https://www.carpages.ca/used-cars/manitoba/winnipeg/2020-ford-fusion-6555682/,2020 Ford Fusion Hybrid Titanium **New Arrival**,"$24,700",White 941 | 939,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-toyota-highlander-6555066/,2021 Toyota Highlander HYBRID XLE,"$49,757",White 942 | 940,https://www.carpages.ca/new-cars/saskatchewan/regina/2021-lexus-ux-6555027/,2021 Lexus UX 250H,"$48,295",Orange 943 | 941,https://www.carpages.ca/used-cars/british-columbia/port-moody/2018-toyota-prius-6554455/,2018 Toyota Prius V,"$24,500",Blue 944 | 942,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6554419/,2021 Ford F-150 XLT,"$56,919",Black 945 | 943,https://www.carpages.ca/new-cars/ontario/thornhill/2021-ford-f-150-6554397/,2021 Ford F-150 XLT,"$45,949",Oxford White 946 | 944,https://www.carpages.ca/used-cars/quebec/st-constant/2017-nissan-leaf-6554349/,2017 Nissan Leaf Hayon 4 portes SV,"$15,495",Bleu 947 | 945,https://www.carpages.ca/new-cars/ontario/peterborough/2021-ford-f-150-6554061/,2021 Ford F-150 XL,"$47,764",Oxford White 948 | 946,https://www.carpages.ca/used-cars/ontario/mississauga/2017-ford-fusion-6553878/,2017 Ford Fusion PLATINUM,"$21,998", 949 | 947,https://www.carpages.ca/used-cars/ontario/mississauga/2018-ford-fusion-6553866/,2018 Ford Fusion SE,"$19,998",Ingot Silver 950 | 948,https://www.carpages.ca/new-cars/british-columbia/abbotsford/2021-ford-escape-6553827/,2021 Ford Escape SE Hybrid,"$37,249",Carbonized Grey Metallic 951 | 949,https://www.carpages.ca/new-cars/ontario/oakville/2021-ford-explorer-6553722/,2021 Ford Explorer LIMITED,"$57,051",Agate Black Metallic 952 | 950,https://www.carpages.ca/new-cars/ontario/kanata/2021-hyundai-elantra-6553572/,2021 Hyundai Elantra Hybrid Ultimate DCT - $179 B/W,"$29,894",Space Blk 953 | 951,https://www.carpages.ca/used-cars/quebec/blainville/2020-hyundai-kona-6553485/,"2020 Hyundai KONA Electric EV PREFERRED APPLE CARPLAY, VOLANT CHAU","$35,987",Blanc 954 | 952,https://www.carpages.ca/used-cars/ontario/georgetown/2017-nissan-leaf-6553440/,"2017 Nissan Leaf SV | 1 OWNR | CLN CRFX | NAV | B/U CAM | 49,791 KM","$16,950",Grey 955 | 953,https://www.carpages.ca/used-cars/quebec/drummondville/2017-audi-a3-6553395/,2017 Audi A3 E-TRON PROGRESSIV + GARANTIE + NAVI + WO,"$24,489", 956 | 954,https://www.carpages.ca/used-cars/ontario/oakville/2014-tesla-model-s-6553084/,"2014 Tesla Model S P85D AUTOPILOT, RECARO SEATS, CARFAX CLEAN","$62,950",Grey 957 | 955,https://www.carpages.ca/used-cars/ontario/oakville/2019-tesla-model-3-6553081/,"2019 Tesla Model 3 LONG RANGE AWD AUTOPILOT, ACCELERATION UPGRADE","$56,950",Grey 958 | 956,https://www.carpages.ca/new-cars/ontario/whitby/2021-toyota-rav4-6552457/,2021 Toyota RAV4 Hybrid LE,"$34,925",01G3 MAGNETIC GREY METALLIC NO CHARGE 959 | 957,https://www.carpages.ca/used-cars/british-columbia/richmond/2017-fiat-500-6551538/,2017 Fiat 500 E 500e - No Accident / One Owner / Nav / No Dealer Fees,"$15,498",Blue 960 | 958,https://www.carpages.ca/used-cars/ontario/barrie/2018-mitsubishi-outlander-6551331/,2018 Mitsubishi Outlander SE | PHEV | Blind Spot | All Wheel Drive,"$28,698",Black 961 | 959,https://www.carpages.ca/used-cars/nova-scotia/halifax/2017-toyota-rav4-6550999/,2017 Toyota RAV4 Hybrid Limited,"$22,700",Silver Sky Metallic 962 | 960,https://www.carpages.ca/new-cars/saskatchewan/saskatoon/2021-jeep-wrangler-6550876/,2021 Jeep Wrangler 80th Anniversary,"$57,998",Granite Crystal Metallic Clearcoat 963 | 961,https://www.carpages.ca/new-cars/ontario/tilbury/2021-ford-explorer-6550857/,2021 Ford Explorer LIMITED,"$58,699",White 964 | 962,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-nx-300h-6550842/,2021 Lexus NX 300h Standard Package,"$49,572",Nebula Grey Pearl 965 | 963,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6550605/,2021 Lexus RX 450h Executive Package,"$75,922",Caviar 966 | 964,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6549447/,2021 Ford F-150 XLT,"$50,289",Silver 967 | 965,https://www.carpages.ca/used-cars/ontario/north-bay/2013-toyota-prius-6549024/,2013 Toyota Prius CTech AS IS - Sunroof - Bluetooth - Cruise,"$4,400",White 968 | 966,https://www.carpages.ca/used-cars/quebec/laval/2012-mitsubishi-i-miev-6548605/,2012 Mitsubishi i-MiEV,"$4,899",Gris foncé 969 | 967,https://www.carpages.ca/used-cars/new-brunswick/moncton/2018-toyota-prius-6547806/,2018 Toyota Prius 5-DR LIFTBACK,"$20,594",Classic Silver Metallic 970 | 968,https://www.carpages.ca/new-cars/ontario/ottawa/2021-toyota-rav4-6547516/,2021 Toyota RAV4 - $310 B/W,"$45,817",Blueprint 971 | 969,https://www.carpages.ca/used-cars/ontario/kitchener/2011-kia-optima-6547110/,2011 Kia Optima Hybrid Premium,"$7,499",Blue 972 | 970,https://www.carpages.ca/used-cars/ontario/etobicoke/2012-kia-optima-6547098/,2012 Kia Optima Hybrid Premium,"$7,990",Silver 973 | 971,https://www.carpages.ca/used-cars/alberta/edmonton/2019-tesla-model-3-6546448/,"2019 Tesla Model 3 STANDARD MOTOR - LEATHER, STANDARD RANGE, LARGE SCREEN, TO MANY FEATURES! DON'T MISS OUT!","$49,711",Black 974 | 972,https://www.carpages.ca/new-cars/alberta/edmonton/2021-lexus-rx-450h-6545706/,2021 Lexus RX 450h F SPORT SERIES 3,"$75,922",Ultra White 975 | 973,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-a8-6545506/,"2019 Audi A8 L w/$25,700 In Options *DEMO*","$89,000",Vesuvius Grey Metallic 976 | 974,https://www.carpages.ca/used-cars/manitoba/winnipeg/2019-audi-q8-6545505/,2019 Audi Q8 Technik w/Luxury & S-Line Packages *Winter Tires*,"$80,000",Navarra Blue Metallic 977 | 975,https://www.carpages.ca/used-cars/ontario/kitchener/2018-toyota-camry-6544722/,"2018 Toyota Camry HYBRID LE HYBRID|LANE DEP|ACC|CAMERA|CONVENIENCE ENTRY|17"" ALLOYS","$23,392",Silver 978 | 976,https://www.carpages.ca/used-cars/ontario/kitchener/2019-lexus-es-300-6544713/,2019 Lexus ES 300 HYBRID|NAV|BLIND|ACC|LANE WATCH|PADDLE|LED HEADLIGHTS|17 ALLOYS,"$35,995",Black 979 | 977,https://www.carpages.ca/used-cars/ontario/kitchener/2019-toyota-camry-6544701/,"2019 Toyota Camry HYBRID HYBRID SE|BLIND|LANE DEP|NAV|F+R SENSORS|PANO|18"" ALLOYS|SPORT SEATS","$26,983",White 980 | 978,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544242/,2021 Ford F-150 XLT,"$56,209",White 981 | 979,https://www.carpages.ca/new-cars/manitoba/brandon/2021-ford-f-150-6544230/,2021 Ford F-150 XLT,"$44,339",White 982 | 980,https://www.carpages.ca/used-cars/ontario/brantford/2018-nissan-leaf-6543984/,2018 Nissan Leaf SV | ELECTRIC | NAV | TOUCHSCREEN |,"$22,888",White 983 | -------------------------------------------------------------------------------- /Scraped-Data/nfl_scraped_data.csv: -------------------------------------------------------------------------------- 1 | ," 2 | NFL Team 3 | "," 4 | W 5 | "," 6 | L 7 | "," 8 | T 9 | "," 10 | PCT 11 | "," 12 | PF 13 | "," 14 | PA 15 | "," 16 | Net Pts 17 | "," 18 | Home 19 | "," 20 | Road 21 | "," 22 | Div 23 | "," 24 | Pct 25 | "," 26 | Conf 27 | "," 28 | Pct 29 | "," 30 | Non-Conf 31 | "," 32 | Strk 33 | "," 34 | Last 5 35 | " 36 | 0,Cincinnati Bengals,2,14,0,0.125,279,420,-141,2 - 6 - 0,0 - 8 - 0,1 - 5 - 0,0.167,2 - 10 - 0,0.167,0 - 4 - 0,1W,2 - 3 - 0 37 | 1,Detroit Lions,3,12,1,0.219,341,423,-82,2 - 6 - 0,1 - 6 - 1,0 - 6 - 0,0.000,2 - 9 - 1,0.208,1 - 3 - 0,9L,0 - 5 - 0 38 | 2,Washington Redskins,3,13,0,0.188,266,435,-169,1 - 7 - 0,2 - 6 - 0,0 - 6 - 0,0.000,2 - 10 - 0,0.167,1 - 3 - 0,4L,1 - 4 - 0 39 | 3,New York Giants,4,12,0,0.250,341,451,-110,2 - 6 - 0,2 - 6 - 0,2 - 4 - 0,0.333,3 - 9 - 0,0.250,1 - 3 - 0,1L,2 - 3 - 0 40 | 4,Arizona Cardinals,5,10,1,0.344,361,442,-81,2 - 5 - 1,3 - 5 - 0,1 - 5 - 0,0.167,3 - 8 - 1,0.292,2 - 2 - 0,1L,2 - 3 - 0 41 | 5,Carolina Panthers,5,11,0,0.313,340,470,-130,2 - 6 - 0,3 - 5 - 0,1 - 5 - 0,0.167,2 - 10 - 0,0.167,3 - 1 - 0,8L,0 - 5 - 0 42 | 6,Los Angeles Chargers,5,11,0,0.313,337,345,-8,2 - 6 - 0,3 - 5 - 0,0 - 6 - 0,0.000,3 - 9 - 0,0.250,2 - 2 - 0,3L,1 - 4 - 0 43 | 7,Miami Dolphins,5,11,0,0.313,306,494,-188,3 - 5 - 0,2 - 6 - 0,2 - 4 - 0,0.333,4 - 8 - 0,0.333,1 - 3 - 0,2W,3 - 2 - 0 44 | 8,Cleveland Browns,6,10,0,0.375,335,393,-58,4 - 4 - 0,2 - 6 - 0,3 - 3 - 0,0.500,6 - 6 - 0,0.500,0 - 4 - 0,3L,1 - 4 - 0 45 | 9,Jacksonville Jaguars,6,10,0,0.375,300,397,-97,3 - 5 - 0,3 - 5 - 0,2 - 4 - 0,0.333,6 - 6 - 0,0.500,0 - 4 - 0,1W,2 - 3 - 0 46 | 10,Atlanta Falcons,7,9,0,0.438,381,399,-18,3 - 5 - 0,4 - 4 - 0,4 - 2 - 0,0.667,6 - 6 - 0,0.500,1 - 3 - 0,4W,4 - 1 - 0 47 | 11,Denver Broncos,7,9,0,0.438,282,316,-34,5 - 3 - 0,2 - 6 - 0,3 - 3 - 0,0.500,6 - 6 - 0,0.500,1 - 3 - 0,2W,4 - 1 - 0 48 | 12,Indianapolis Colts,7,9,0,0.438,361,373,-12,5 - 3 - 0,2 - 6 - 0,3 - 3 - 0,0.500,5 - 7 - 0,0.417,2 - 2 - 0,1L,1 - 4 - 0 49 | 13,New York Jets,7,9,0,0.438,276,359,-83,5 - 3 - 0,2 - 6 - 0,2 - 4 - 0,0.333,4 - 8 - 0,0.333,3 - 1 - 0,2W,3 - 2 - 0 50 | 14,Oakland Raiders,7,9,0,0.438,313,419,-106,5 - 3 - 0,2 - 6 - 0,3 - 3 - 0,0.500,5 - 7 - 0,0.417,2 - 2 - 0,1L,1 - 4 - 0 51 | 15,Tampa Bay Buccaneers,7,9,0,0.438,458,449,9,2 - 6 - 0,5 - 3 - 0,2 - 4 - 0,0.333,5 - 7 - 0,0.417,2 - 2 - 0,2L,3 - 2 - 0 52 | 16,Chicago Bears,8,8,0,0.500,280,298,-18,4 - 4 - 0,4 - 4 - 0,4 - 2 - 0,0.667,7 - 5 - 0,0.583,1 - 3 - 0,1W,3 - 2 - 0 53 | 17,Dallas Cowboys,8,8,0,0.500,434,321,113,5 - 3 - 0,3 - 5 - 0,5 - 1 - 0,0.833,7 - 5 - 0,0.583,1 - 3 - 0,1W,2 - 3 - 0 54 | 18,Pittsburgh Steelers,8,8,0,0.500,289,303,-14,5 - 3 - 0,3 - 5 - 0,3 - 3 - 0,0.500,6 - 6 - 0,0.500,2 - 2 - 0,3L,2 - 3 - 0 55 | 19,Los Angeles Rams,9,7,0,0.563,394,364,30,5 - 3 - 0,4 - 4 - 0,3 - 3 - 0,0.500,7 - 5 - 0,0.583,2 - 2 - 0,1W,3 - 2 - 0 56 | 20,"Philadelphia Eagles 57 | xz",9,7,0,0.563,385,354,31,5 - 3 - 0,4 - 4 - 0,5 - 1 - 0,0.833,7 - 5 - 0,0.583,2 - 2 - 0,4W,4 - 1 - 0 58 | 21,"Tennessee Titans 59 | x",9,7,0,0.563,402,331,71,4 - 4 - 0,5 - 3 - 0,3 - 3 - 0,0.500,7 - 5 - 0,0.583,2 - 2 - 0,1W,3 - 2 - 0 60 | 22,"Buffalo Bills 61 | x",10,6,0,0.625,314,259,55,4 - 4 - 0,6 - 2 - 0,3 - 3 - 0,0.500,7 - 5 - 0,0.583,3 - 1 - 0,2L,2 - 3 - 0 62 | 23,"Houston Texans 63 | xz",10,6,0,0.625,378,385,-7,5 - 3 - 0,5 - 3 - 0,4 - 2 - 0,0.667,8 - 4 - 0,0.667,2 - 2 - 0,1L,3 - 2 - 0 64 | 24,"Minnesota Vikings 65 | x",10,6,0,0.625,407,303,104,6 - 2 - 0,4 - 4 - 0,2 - 4 - 0,0.333,7 - 5 - 0,0.583,3 - 1 - 0,2L,2 - 3 - 0 66 | 25,Seattle Seahawks,11,5,0,0.688,405,398,7,4 - 4 - 0,7 - 1 - 0,3 - 3 - 0,0.500,8 - 4 - 0,0.667,3 - 1 - 0,2L,2 - 3 - 0 67 | 26,"Kansas City Chiefs 68 | xz",12,4,0,0.750,451,308,143,5 - 3 - 0,7 - 1 - 0,6 - 0 - 0,1.000,9 - 3 - 0,0.750,3 - 1 - 0,6W,5 - 0 - 0 69 | 27,"New England Patriots 70 | xz",12,4,0,0.750,420,225,195,6 - 2 - 0,6 - 2 - 0,5 - 1 - 0,0.833,8 - 4 - 0,0.667,4 - 0 - 0,1L,2 - 3 - 0 71 | 28,"Green Bay Packers 72 | xz",13,3,0,0.813,376,313,63,7 - 1 - 0,6 - 2 - 0,6 - 0 - 0,1.000,10 - 2 - 0,0.833,3 - 1 - 0,5W,5 - 0 - 0 73 | 29,"New Orleans Saints 74 | xz",13,3,0,0.813,458,341,117,6 - 2 - 0,7 - 1 - 0,5 - 1 - 0,0.833,9 - 3 - 0,0.750,4 - 0 - 0,3W,4 - 1 - 0 75 | 30,"San Francisco 49ers 76 | x*",13,3,0,0.813,479,310,169,6 - 2 - 0,7 - 1 - 0,5 - 1 - 0,0.833,10 - 2 - 0,0.833,3 - 1 - 0,2W,3 - 2 - 0 77 | 31,"Baltimore Ravens 78 | xz*",14,2,0,0.875,531,282,249,7 - 1 - 0,7 - 1 - 0,5 - 1 - 0,0.833,10 - 2 - 0,0.833,4 - 0 - 0,12W,5 - 0 - 0 79 | -------------------------------------------------------------------------------- /Scraped-Data/union-los-angeles_scraped_data.csv: -------------------------------------------------------------------------------- 1 | ,Link,Vendor,Title,Price 2 | 0,,,, 3 | 1,https://store.unionlosangeles.com/products/union-core-welders-jacket-1?nosto=collectionpage-nosto-1,UNION LOS ANGELES,Union Core Welders Jacket,$180.00 4 | 2,https://store.unionlosangeles.com/products/arrow-vintage-bomber?nosto=collectionpage-nosto-1,OFF-WHITE,Arrow Vintage Bomber,"$1,682.00" 5 | 3,https://store.unionlosangeles.com/products/modular-jacket-nyco-tussah-1?nosto=collectionpage-nosto-1,Wtaps,MODULAR / JACKET / NYCO. TUSSAH,$698.00 6 | 4,https://store.unionlosangeles.com/products/thorson-ii?nosto=collectionpage-nosto-1,Visvim,Thorson II Bomber Jacket,"$3,260.00" 7 | -------------------------------------------------------------------------------- /Scraped-Data/world_population_scraped_data.csv: -------------------------------------------------------------------------------- 1 | ,Year (July 1) ,Population,Yearly % Change,Yearly Change,Median Age,Fertility Rate,Density (P/Km²),Urban Pop %,Urban Population 2 | 0,2020,"7,794,798,739",1.05 %,"81,330,639",30.9,2.47,52,56.2 %,"4,378,993,944" 3 | 1,2019,"7,713,468,100",1.08 %,"82,377,060",29.8,2.51,52,55.7 %,"4,299,438,618" 4 | 2,2018,"7,631,091,040",1.10 %,"83,232,115",29.8,2.51,51,55.3 %,"4,219,817,318" 5 | 3,2017,"7,547,858,925",1.12 %,"83,836,876",29.8,2.51,51,54.9 %,"4,140,188,594" 6 | 4,2016,"7,464,022,049",1.14 %,"84,224,910",29.8,2.51,50,54.4 %,"4,060,652,683" 7 | 5,2015,"7,379,797,139",1.19 %,"84,594,707",30,2.52,50,54.0 %,"3,981,497,663" 8 | 6,2010,"6,956,823,603",1.24 %,"82,983,315",28,2.58,47,51.7 %,"3,594,868,146" 9 | 7,2005,"6,541,907,027",1.26 %,"79,682,641",27,2.65,44,49.2 %,"3,215,905,863" 10 | 8,2000,"6,143,493,823",1.35 %,"79,856,169",26,2.78,41,46.7 %,"2,868,307,513" 11 | 9,1995,"5,744,212,979",1.52 %,"83,396,384",25,3.01,39,44.8 %,"2,575,505,235" 12 | 10,1990,"5,327,231,061",1.81 %,"91,261,864",24,3.44,36,43.0 %,"2,290,228,096" 13 | 11,1985,"4,870,921,740",1.79 %,"82,583,645",23,3.59,33,41.2 %,"2,007,939,063" 14 | 12,1980,"4,458,003,514",1.79 %,"75,704,582",23,3.86,30,39.3 %,"1,754,201,029" 15 | 13,1975,"4,079,480,606",1.97 %,"75,808,712",22,4.47,27,37.7 %,"1,538,624,994" 16 | 14,1970,"3,700,437,046",2.07 %,"72,170,690",22,4.93,25,36.6 %,"1,354,215,496" 17 | 15,1965,"3,339,583,597",1.93 %,"60,926,770",22,5.02,22,N.A.,N.A. 18 | 16,1960,"3,034,949,748",1.82 %,"52,385,962",23,4.90,20,33.7 %,"1,023,845,517" 19 | 17,1955,"2,773,019,936",1.80 %,"47,317,757",23,4.97,19,N.A.,N.A. 20 | -------------------------------------------------------------------------------- /airbnb.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | import pandas as pd 4 | 5 | url = 'https://www.airbnb.com/s/Honolulu--HI--United-States/homes?tab_id=home_tab&refinement_paths%5B%5D=%2Fhomes&date_picker_type=calendar&checkin=2021-02-28&checkout=2021-03-05&source=structured_search_input_header&search_type=pagination&ne_lat=21.34812729706493&ne_lng=-157.74456931204463&sw_lat=21.232326394850137&sw_lng=-157.91365576834346&zoom=13&search_by_map=true&place_id=ChIJTUbDjDsYAHwRbJen81_1KEs&federated_search_session_id=1559b2e9-ec03-456b-9fa9-a4bb79746f64' 6 | 7 | page = requests.get(url) 8 | 9 | soup = BeautifulSoup(page.text, 'lxml') 10 | 11 | df = pd.DataFrame({'Links':[''], 'Title':[''], 'Details':[''], 'Price':[''], 'Rating':['']}) 12 | 13 | while True: 14 | 15 | postings = soup.find_all('div', class_='_8s3ctt') 16 | for post in postings: 17 | try: 18 | link = post.find('a', class_='_gjfol0').get('href') 19 | link_full = 'https://www.airbnb.com' + link 20 | title = post.find('a', class_='_gjfol0').get('aria-label') 21 | price = post.find('span', class_='_olc9rf0').text 22 | rating = post.find('span', class_='_10fy1f8').text 23 | details = post.find('div', class_='_kqh46o').text 24 | 25 | df = df.append({'Links':link_full, 'Title':title, 'Details':details, 'Price':price, 'Rating':rating}, ignore_index = True) 26 | 27 | except: 28 | pass 29 | 30 | try: 31 | next_page = soup.find_all('a', {'aria-label': 'Next'})[0].get('href') 32 | next_page_url = 'https://www.airbnb.com' + next_page 33 | page = requests.get(next_page_url) 34 | soup = BeautifulSoup(page.text, 'lxml') 35 | 36 | except: 37 | break 38 | 39 | df.to_csv('~/Scraped-Data/airbnb_scraped_data.csv') 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /basics.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | 4 | # Getting the HTML from a website 5 | url = 'https://webscraper.io/test-sites/e-commerce/allinone/computers' 6 | 7 | page = requests.get(url) 8 | 9 | soup = BeautifulSoup(page.text, 'lxml') 10 | 11 | soup 12 | 13 | # Tags 14 | 15 | soup.head 16 | soup.div 17 | 18 | # Navigable Strings 19 | tag = soup.header.p 20 | 21 | tag.string 22 | 23 | # Attributes 24 | tag = soup.header.a 25 | tag.attrs0 26 | 27 | 28 | ##################################### 29 | 30 | url = 'https://webscraper.io/test-sites/e-commerce/allinone/phones/touch' 31 | 32 | page = requests.get(url) 33 | page 34 | 35 | soup = BeautifulSoup(page.text, 'lxml') 36 | soup 37 | 38 | # find 39 | soup.find('header') 40 | 41 | soup.header.attrs 42 | 43 | soup.find('div', {'class':'container test-site'}) 44 | 45 | soup.find('h4', {'class':'pull-right price'}) 46 | 47 | 48 | # find_all - part 1 49 | soup.find_all('h4', {'class':'pull-right price'})[6:] 50 | 51 | soup.find_all('a', class_ = 'title') 52 | 53 | soup.find_all('p', class_ = 'pull-right') 54 | 55 | 56 | # find_all - part 2 57 | soup.find_all(['h4','p','a']) 58 | 59 | soup.find_all(id = True) 60 | 61 | soup.find_all(string = 'Iphone') 62 | 63 | import re 64 | 65 | soup.find_all(string = re.compile('Nok')) 66 | 67 | soup.find_all(string = ['Iphone', 'Nokia 123']) 68 | 69 | soup.find_all(class_ = re.compile('pull')) 70 | 71 | soup.find_all('p', class_ = re.compile('pull')) 72 | 73 | soup.find_all('p', class_ = re.compile('pull'), limit = 3) 74 | 75 | 76 | # find_all - part 3 77 | product_name = soup.find_all('a', class_ = 'title') 78 | product_name 79 | 80 | price = soup.find_all('h4', class_ = 'pull-right price') 81 | price 82 | 83 | reviews = soup.find_all('p', class_ = re.compile('pull')) 84 | reviews 85 | 86 | description = soup.find_all('p', class_ = 'description') 87 | description 88 | 89 | 90 | product_name_list = [] 91 | for i in product_name: 92 | name = i.text 93 | product_name_list.append(name) 94 | 95 | price_list = [] 96 | for i in price: 97 | price2 = i.text 98 | price_list.append(price2) 99 | 100 | 101 | reviews_list = [] 102 | for i in reviews: 103 | reviews2 = i.text 104 | reviews_list.append(reviews2) 105 | 106 | 107 | descriptions_list = [] 108 | for i in description: 109 | descriptions2 = i.text 110 | descriptions_list.append(descriptions2) 111 | 112 | import pandas as pd 113 | 114 | table = pd.DataFrame({'Product Name':product_name_list, 'Description':descriptions_list, 115 | 'Price':price_list, 'Reviews':reviews_list}) 116 | 117 | # print(table) 118 | 119 | # extracted data from nested HTML tags 120 | boxes = soup.find_all('div', class_='col-sm-4 col-lg-4 col-md-4')[6] 121 | boxes 122 | 123 | boxes.find('a').text 124 | 125 | boxes.find('p', class_='description').text 126 | 127 | box2 = soup.find_all('ul', class_='nav', id='side-menu')[0] 128 | 129 | box2.find_all('li')[1].text 130 | 131 | 132 | 133 | 134 | 135 | 136 | -------------------------------------------------------------------------------- /carpages.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | import pandas as pd 4 | 5 | url = 'https://www.carpages.ca/used-cars/search/?fueltype_id%5B0%5D=3&fueltype_id%5B1%5D=7' 6 | 7 | page = requests.get(url) 8 | 9 | soup = BeautifulSoup(page.text, 'lxml') 10 | 11 | df = pd.DataFrame({'Links': [''], 'Title': [''], 'Price': [''], 'Color': ['']}) 12 | 13 | for i in range(20): 14 | 15 | postings = soup.find_all('div', class_='media soft push-none rule') 16 | for post in postings: 17 | try: 18 | link = post.find('h4', class_='hN') 19 | link_full = 'https://www.carpages.ca' + link.find('a').get('href') 20 | title = link.find('a').get('title') 21 | price = post.find('strong', class_='delta').text.strip() 22 | color_div = post.find_all('div', class_='grey l-column l-column--small-6 l-column--medium-4')[1] 23 | color = color_div.find('span').text.strip() 24 | df = df.append({'Links': link_full, 'Title': title, 'Price': price, 'Color': color}, ignore_index=True) 25 | 26 | except: 27 | pass 28 | next_page_url = soup.find('a', class_='nextprev').get('href') 29 | page = requests.get(next_page_url) 30 | soup = BeautifulSoup(page.text, 'lxml') 31 | 32 | 33 | df.to_csv('~/Scraped-Data/carpages_scraped_data.csv') 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /imdb.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | from selenium.webdriver.common.keys import Keys 3 | from selenium.webdriver.common.by import By 4 | from selenium.webdriver.support.ui import WebDriverWait 5 | from selenium.webdriver.support import expected_conditions as EC 6 | import time 7 | 8 | driver = webdriver.Firefox() 9 | driver.get('https://www.google.com/') 10 | 11 | box = driver.find_element_by_xpath('/html/body/div[1]/div[3]/form/div[2]/div[1]/div[1]/div/div[2]/input') 12 | box.send_keys('top 100 movies of all time imdb') 13 | box.send_keys(Keys.ENTER) 14 | time.sleep(10) 15 | imdb_website = driver.find_element_by_xpath('/html/body/div[7]/div[2]/div[9]/div[2]/div/div[2]/div[2]/div/div/div[1]/div[2]/div/div[1]/a/h3').click() 16 | time.sleep(10) 17 | 18 | driver.execute_script('window.scrollTo(0, 12000)') 19 | 20 | driver.save_screenshot('~/Scraped-Data/imdb_screenshot.png') 21 | 22 | driver.close() 23 | -------------------------------------------------------------------------------- /indeed.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | from selenium.webdriver.common.keys import Keys 3 | from bs4 import BeautifulSoup 4 | import pandas as pd 5 | import time 6 | 7 | driver = webdriver.Firefox() 8 | driver.get('https://www.indeed.com/') 9 | 10 | input_job_name = driver.find_element_by_xpath('//*[@id="text-input-what"]') 11 | input_job_name.send_keys('data analyst') 12 | 13 | input_location = driver.find_element_by_xpath('//*[@id="text-input-where"]') 14 | input_location.send_keys('New York, NY') 15 | time.sleep(5) 16 | find_job = driver.find_element_by_xpath('/html/body/div/div[2]/div[3]/div[1]/div/div/div/form/div[3]').click() 17 | 18 | # Creates a dataframe 19 | df = pd.DataFrame({'Link': [''], 'Job Title': [''], 'Company': [''], 'Location': [''], 'Salary': [''], 'Date': ['']}) 20 | 21 | # This loop goes through every page and grabs all the details of each posting 22 | # Loop will only end when there are no more pages to go through 23 | while True: 24 | # Imports the HTML of the current page into python 25 | soup = BeautifulSoup(driver.page_source, 'lxml') 26 | 27 | # Grabs the HTML of each posting 28 | postings = soup.find_all('div', class_='jobsearch-SerpJobCard unifiedRow row result clickcard') 29 | 30 | # grabs all the details for each posting and adds it as a row to the dataframe 31 | for post in postings: 32 | link = post.find('a', class_='jobtitle turnstileLink').get('href') 33 | link_full = 'https://www.indeed.com/' + link 34 | name = post.find('h2', class_='title').text.strip() 35 | company = post.find('span', class_='company').text.strip() 36 | try: 37 | location = post.find('div', class_='location accessible-contrast-color-location').text.strip() 38 | except: 39 | location = 'N/A' 40 | date = post.find('span', class_='date').text.strip() 41 | try: 42 | salary = post.find('span', class_='salaryText').text.strip() 43 | except: 44 | salary = 'N/A' 45 | df = df.append( 46 | {'Link': link_full, 'Job Title': name, 'Company': company, 'Location': location, 'Salary': salary, 47 | 'Date': date}, 48 | ignore_index=True) 49 | 50 | # checks if there is a button to go to the next page, and if not will stop the loop 51 | try: 52 | button = soup.find('a', attrs={'aria-label': 'Next'}).get('href') 53 | driver.get('https://www.indeed.com/' + button) 54 | except: 55 | break 56 | 57 | df['Date_num'] = df['Date'].apply(lambda x: x[:2].strip()) 58 | 59 | def integer(x): 60 | try: 61 | return int(x) 62 | except: 63 | return x 64 | 65 | df['Date_new'] = df['Date_num'].apply(integer) 66 | df.sort_values(by= ['Date_new', 'Salary'], inplace= True) 67 | 68 | df = df[['Link', 'Job Title', 'Company', 'Location', 'Salary', 'Date']] 69 | df.to_csv('~/Scraped-Data/indeed_scraped_data.csv') 70 | 71 | 72 | ##################################################################################### 73 | 74 | #Code below sends an email to whomever through python 75 | import smtplib, ssl 76 | from email.mime.text import MIMEText 77 | from email.mime.base import MIMEBase 78 | from email.mime.multipart import MIMEMultipart 79 | from email import encoders 80 | 81 | #Input the email account that will send the email and who will receiving it 82 | sender = 'account@gmail.com' 83 | receiver = 'account@gmail.com' 84 | 85 | #Creates the Message, Subject line, From and To 86 | msg = MIMEMultipart() 87 | msg['Subject'] = 'New Jobs on Indeed' 88 | msg['From'] = sender 89 | msg['To'] = ','.join(receiver) 90 | 91 | #Adds a csv file as an attachment to the email (indeed_jobs.csv is our attahced csv in this case) 92 | part = MIMEBase('application', 'octet-stream') 93 | part.set_payload(open('A/File/Path/indeed_jobs.csv', 'rb').read()) 94 | encoders.encode_base64(part) 95 | part.add_header('Content-Disposition', 'attachment; filename ="indeed_jobs.csv"') 96 | msg.attach(part) 97 | 98 | #Will login to your email and actually send the message above to the receiver 99 | s = smtplib.SMTP_SSL(host = 'smtp.gmail.com', port = 465) 100 | s.login(user = 'account@gmail.com', password = 'input your password') 101 | s.sendmail(sender, receiver, msg.as_string()) 102 | s.quit() 103 | -------------------------------------------------------------------------------- /nfl.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | import pandas as pd 4 | 5 | url = 'https://www.nfl.com/standings/league/2019/reg/' 6 | 7 | page = requests.get(url) 8 | 9 | soup = BeautifulSoup(page.text, 'lxml') 10 | 11 | table = soup.find('table', {'summary':'Standings - Detailed View'}) 12 | 13 | headers = [] 14 | 15 | for i in table.find_all('th'): 16 | title = i.text 17 | headers.append(title) 18 | 19 | df = pd.DataFrame(columns= headers) 20 | 21 | for j in table.find_all('tr')[1:]: 22 | first_td = j.find_all('td')[0].find('div', class_='d3-o-club-fullname').text.strip() 23 | row_data = j.find_all('td')[1:] 24 | row = [tr.text.strip() for tr in row_data] 25 | row.insert(0, first_td) 26 | length = len(df) 27 | df.loc[length] = row 28 | 29 | print(df) 30 | 31 | df.to_csv('~/Scraped-Data/nfl_scraped_data.csv') 32 | 33 | 34 | -------------------------------------------------------------------------------- /nike.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | from selenium.webdriver.common.keys import Keys 3 | from bs4 import BeautifulSoup 4 | import pandas as pd 5 | import time 6 | 7 | driver = webdriver.Firefox() 8 | driver.get('https://www.google.com/') 9 | 10 | box = driver.find_element_by_xpath('/html/body/div[1]/div[3]/form/div[2]/div[1]/div[1]/div/div[2]/input') 11 | box.send_keys('nike') 12 | box.send_keys(Keys.ENTER) 13 | 14 | time.sleep(10) 15 | imdb_website = driver.find_element_by_xpath('/html/body/div[7]/div[2]/div[9]/div[2]/div/div[2]/div[2]/div/div/div[1]/div/div/div/div[1]/a/h3').click() 16 | 17 | time.sleep(10) 18 | imdb_website = driver.find_element_by_xpath('/html/body/div[1]/div[3]/header/div/div[1]/div[2]/nav/div[2]/ul/li[6]/a').click() 19 | 20 | time.sleep(10) 21 | imdb_website = driver.find_element_by_xpath('/html/body/div[1]/div[4]/nav/button/i').click() 22 | 23 | last_height = driver.execute_script('return document.body.scrollHeight') 24 | print(last_height) 25 | while True: 26 | driver.execute_script('window.scrollTo(0,document.body.scrollHeight)') 27 | time.sleep(2) 28 | new_hight = driver.execute_script('return document.body.scrollHeight') 29 | if(new_hight == last_height): 30 | break 31 | last_height = new_hight 32 | 33 | soup = BeautifulSoup(driver.page_source, 'lxml') 34 | 35 | product_card = soup.find_all('div', class_='product-card__body') 36 | 37 | df = pd.DataFrame({'Link':[''], 'Name':[''], 'Subtitle':[''],'Color':[''],'Price':[''],'Sale Price':['']}) 38 | for product in product_card: 39 | try: 40 | link = product.find('a', class_='product-card__img-link-overlay').get('href') 41 | name = product.find('div', class_='product-card__title').text 42 | subtitle = product.find('div', class_='product-card__subtitle').text 43 | color = product.find('div', class_='product-card__product-count').text 44 | full_price = product.find('div', class_='product-price css-1h0t5hy').text 45 | sale_price = product.find('div', class_='product-price is--current-price css-s56yt7').text 46 | df = df.append({'Link':link, 'Name':name, 'Subtitle':subtitle,'Color':color,'Price':full_price,'Sale Price':sale_price}, ignore_index= True) 47 | except: 48 | pass 49 | 50 | df.to_csv('~/Scraped-Data/nike_scraped_data.csv') -------------------------------------------------------------------------------- /selenium_basics.py: -------------------------------------------------------------------------------- 1 | # Part 1 2 | 3 | from selenium import webdriver 4 | 5 | driver = webdriver.Chrome('/usr/bin/chromedriver') 6 | 7 | driver.get('https://www.goat.com/sneakers') 8 | 9 | # Find using xpath 10 | 11 | price = driver.find_element_by_xpath('//*[@id="0"]/div[2]/div/p/span').text 12 | 13 | # Find using xpath and loop 14 | 15 | for i in range(30): 16 | price = driver.find_element_by_xpath('//*[@id="'+str(i)+'"]/div[2]/div/p/span').text 17 | 18 | print(price) 19 | 20 | # ---------------------------------------------------------------------------------------------- 21 | # Part 2 22 | 23 | from selenium import webdriver 24 | from selenium.webdriver.common.keys import Keys 25 | 26 | driver = webdriver.Firefox() 27 | driver.get('https://www.google.com/') 28 | 29 | # sending Text into an Input Box 30 | 31 | box = driver.find_element_by_xpath('/html/body/div[1]/div[3]/form/div[2]/div[1]/div[1]/div/div[2]/input') 32 | 33 | box.send_keys('web scraping') 34 | box.send_keys(Keys.ENTER) # Press Enter 35 | 36 | # Clicking on a button 37 | 38 | button = driver.find_element_by_xpath('/html/body/div[1]/div[3]/form/div[2]/div[1]/div[3]/center/input[1]') 39 | button.click() # Press Search Button 40 | 41 | # Taking a screenshot 42 | 43 | driver.save_screenshot('~/Scraped-Data/screenshot.png') # Saving the screenshot 44 | 45 | # Self-Scrolling 46 | driver.find_element_by_xpath('/html/body/div[7]/div[2]/div[4]/div/div[1]/div/div[1]/div/div[3]/a').click() 47 | 48 | driver.execute_script('return document.body.scrollHeight') 49 | 50 | driver.execute_script('window.scrollTo(0, 6000)') 51 | 52 | while True: 53 | driver.execute_script('window.scrollTo(0, document.body.scrollHeight)') 54 | 55 | 56 | # Wait times 57 | 58 | from selenium.webdriver.common.by import By 59 | from selenium.webdriver.support.ui import WebDriverWait 60 | from selenium.webdriver.support import expected_conditions as EC 61 | 62 | element = WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.XPATH, '/html/body/div[7]/div[2]/div[4]/div/div[1]/div/div[1]/div/div[3]/a'))) 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /stocks.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | 4 | url = 'https://www.marketwatch.com/investing/stock/aapl' 5 | 6 | page = requests.get(url) 7 | 8 | soup = BeautifulSoup(page.text, 'lxml') 9 | 10 | # Price of the stock 11 | price = soup.find('bg-quote', class_ = 'value').text 12 | 13 | print("Price : "+ price) 14 | 15 | # Closing price of the stock 16 | 17 | close_price = soup.find('td', class_ = 'table__cell u-semi').text 18 | 19 | print("Closing Price : "+ close_price) 20 | 21 | # 52 week range (Lower, Upper) 22 | 23 | nested = soup.find('mw-rangebar', class_ ='element element--range range--yearly') 24 | 25 | lower = nested.find_all('span', class_ = 'primary')[0].text 26 | 27 | print ("52 week range Lower Price : "+lower) 28 | 29 | upper = nested.find_all('span', class_ = 'primary')[1].text 30 | 31 | print ("52 week range Upper Price : "+upper) 32 | 33 | # Analyst Rating 34 | 35 | avg = soup.find('li', class_ = 'analyst__option active').text 36 | 37 | print("Analyst Ratings : "+ avg) -------------------------------------------------------------------------------- /twitter.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | from selenium.webdriver.common.keys import Keys 3 | from bs4 import BeautifulSoup 4 | import pandas as pd 5 | import time 6 | 7 | driver = webdriver.Firefox() 8 | driver.get('https://twitter.com/login') 9 | time.sleep(5) 10 | username = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div[2]/form/div/div[1]/label/div/div[2]/div/input') 11 | username.send_keys('user_name') 12 | 13 | password = driver.find_element_by_xpath('/html/body/div/div/div/div[2]/main/div/div/div[2]/form/div/div[2]/label/div/div[2]/div/input') 14 | password.send_keys('password') 15 | 16 | login_button = driver.find_element_by_xpath('//*[@id="react-root"]/div/div/div[2]/main/div/div/div[2]/form/div/div[3]/div').click() 17 | 18 | time.sleep(10) 19 | 20 | celebrity = 'sakib al hasan' 21 | search = driver.find_element_by_xpath('/html/body/div/div/div/div[2]/main/div/div/div/div[2]/div/div[2]/div/div/div/div[1]/div/div/div/form/div[1]/div/div/div[2]/input') 22 | 23 | search.send_keys(celebrity) 24 | search.send_keys(Keys.ENTER) 25 | time.sleep(5) 26 | people_button = driver.find_element_by_xpath('/html/body/div/div/div/div[2]/main/div/div/div/div[1]/div/div[1]/div[2]/nav/div/div[2]/div/div[3]/a/div').click() 27 | time.sleep(5) 28 | celebrity_profile = driver.find_element_by_xpath('/html/body/div/div/div/div[2]/main/div/div/div/div[1]/div/div[2]/div/div/section/div/div/div[1]/div/div/div/div[2]/div[1]/div[1]/a/div/div[1]/div[1]/span').click() 29 | 30 | time.sleep(2) 31 | 32 | 33 | 34 | soup = BeautifulSoup(driver.page_source, 'lxml') 35 | 36 | postings = soup.find_all('div', class_='css-901oao r-1fmj7o5 r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-bcqeeo r-bnwqim r-qvutc0') 37 | 38 | tweets = [] 39 | 40 | while True: 41 | for post in postings: 42 | tweets.append(post.text) 43 | driver.execute_script('window.scrollTo(0,document.body.scrollHeight)') 44 | time.sleep(2) 45 | soup = BeautifulSoup(driver.page_source, 'lxml') 46 | postings = soup.find_all('div',class_='css-901oao r-1fmj7o5 r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-bcqeeo r-bnwqim r-qvutc0') 47 | tweets_final = list(set(tweets)) 48 | if len(tweets) > 200: 49 | break 50 | 51 | print(tweets_final) -------------------------------------------------------------------------------- /union_los_angeles.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | from selenium.webdriver.common.keys import Keys 3 | from bs4 import BeautifulSoup 4 | import pandas as pd 5 | import time 6 | 7 | driver = webdriver.Firefox() 8 | driver.get('https://store.unionlosangeles.com/collections/outerwear') 9 | 10 | last_height = driver.execute_script('return document.body.scrollHeight') 11 | 12 | while True: 13 | driver.execute_script('window.scrollTo(0,document.body.scrollHeight)') 14 | time.sleep(2) 15 | new_hight = driver.execute_script('return document.body.scrollHeight') 16 | if(new_hight == last_height): 17 | break 18 | last_height = new_hight 19 | 20 | soup = BeautifulSoup(driver.page_source, 'lxml') 21 | 22 | section = soup.find('div', {'id':'main', 'role':'main'}) 23 | products = section.find_all('li') 24 | df = pd.DataFrame({'Link':[''], 'Vendor':[''], 'Title':[''],'Price':['']}) 25 | for product in products: 26 | try: 27 | link = product.find('a').get('href') 28 | vendor = product.find('p', class_='cap-vendor').text 29 | title = product.find('p', class_='cap-title').text 30 | price = product.find('p', class_='cap-price').text 31 | 32 | df = df.append({'Link':link, 'Vendor':vendor, 'Title':title,'Price':price}, ignore_index= True) 33 | except: 34 | pass 35 | 36 | df.to_csv('~/Scraped-Data/union-los-angeles_scraped_data.csv') -------------------------------------------------------------------------------- /world_population.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | import pandas as pd 4 | 5 | url = 'https://www.worldometers.info/world-population/' 6 | 7 | page = requests.get(url) 8 | 9 | soup = BeautifulSoup(page.text, 'lxml') 10 | 11 | table = soup.find('table', class_ = 'table table-striped table-bordered table-hover table-condensed table-list') 12 | 13 | headers = [] 14 | 15 | for i in table.find_all('th'): 16 | title = i.text 17 | headers.append(title) 18 | 19 | df = pd.DataFrame(columns= headers) 20 | 21 | for j in table.find_all('tr')[1:]: 22 | row_data = j.find_all('td') 23 | row = [tr.text for tr in row_data] 24 | length = len(df) 25 | df.loc[length] = row 26 | 27 | print(df) 28 | 29 | df.to_csv('~/Scraped-Data/world_population_scraped_data.csv') 30 | 31 | 32 | --------------------------------------------------------------------------------