From d918bbba57dcfc818440bf66d7664fa3461313b1 Mon Sep 17 00:00:00 2001 From: matt-laborde Date: Wed, 28 Jan 2026 14:09:27 -0600 Subject: [PATCH] Update README.md Pandas no longer supports iteritems so images were not capturing anymore with this script. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 242125b..53f20a2 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,9 @@ pip3 install git+https://github.com/practical-data-science/ShopifyScraper.git ```python from shopify_scraper import scraper +# Patch for Pandas 2.0+ compatibility. get_images will work after addition. +pd.Series.iteritems = pd.Series.items + url = "https://yourshopifydomain.com" parents = scraper.get_products(url)