amzsc is an Amazon product description scraper library that allows you to extract product details such as title, price, description, and reviews using ASINs.
from amzsc import AmazonScraper
def main():
# Initialize the AmazonScraper with your Amazon credentials
scraper = AmazonScraper()
asins = ['B08N5WRWNW', 'B07XJ8C8F5'] # Example ASINs
results = scraper.scrape(asins=asins, marketplace="US") # DataFrame with scraped data
print(results)
if __name__ == "__main__":
main()pip install amzscContributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.
git clone https://github.com/ryzanbui02/amzsc.git
cd amzsc
uv sync