drawrowfly / amazon-product-api

Amazon Scraper. Scrape products from the amazon search result or reviews from the specific product
631 stars 181 forks source link

Incorrect Prices #18

Closed vivekkairi closed 3 years ago

vivekkairi commented 3 years ago

image image

ASIN: B07X95S434 Amazon.in

vivekkairi commented 3 years ago

.replace(/[^D+0-9.,]/g, '')

I found out that due to that ',' in price conversion to float was not happening properly. So changing the above regex to .replace(/[^D+0-9.]/g, '') fixes the problem

drawrowfly commented 3 years ago

will be fixed with the next update