Looking for a tool to scrape Ecommerce website prices

Joined
Mar 7, 2017
Messages
7
Likes
4
Degree
0
Anyone know of a tool that I can use to scrape a website for product prices and save them in google sheets?

Ideally scraping from 4 or 5 website for multiple products and automated to update once per day.

Thanks.
 
A friend of mine is using PriSync for something similar - it's paid but offers good functionality and scales pretty well.
 
A friend of mine is using PriSync for something similar - it's paid but offers good functionality and scales pretty well.

Thanks look interesting, but can't justify the price at the moment. As it is for a project I am just dipping my toes in for the time being.

Ideally looking a cheaper or free solution.
 
Google Sheets ImportXML function + XPath Helper Chrome plugin. Use the Xpath plugin to grab the price on the page, note this can be tricky if the site has varying product page types. Make a column of the urls you want to track, then use the ImportXML function to match your Xpath.
 
Check out Kimonolabs

Kimonolabs.com
 
Example of how to do it in Google Sheets:
Column A
Code:
http://www.bestbuy.com/site/microsoft-xbox-one-s-500gb-minecraft-favorites-console-bundle-with-4k-ultra-hd-blu-ray-white/5613810.p?skuId=5613810
Column B
Code:
=CONCATENATE(IMPORTXML(A2, "//div[@class='price-column']/div[@class='item-price']"))
 
Example of how to do it in Google Sheets:
Column A
Code:
http://www.bestbuy.com/site/microsoft-xbox-one-s-500gb-minecraft-favorites-console-bundle-with-4k-ultra-hd-blu-ray-white/5613810.p?skuId=5613810
Column B
Code:
=CONCATENATE(IMPORTXML(A2, "//div[@class='price-column']/div[@class='item-price']"))

You sir are a freakin legend! Exactly what I was looking for, didn't realise it was this simple.
 
Whoops, did not notice that (replied on my phone yesterday)
Sorry for that.

The google docs solution looks pretty handy.
 
Used to be a fantastic tool too..
 
Back