← back to FashionCrawler
Fix Depop image-link column: check get_image_links attr, not nonexistent html
33c7bc403877528b1d8da4371843e06fcd9912c5 · 2026-05-18 20:08:26 -0700 · Steve Abrams
Files touched
M fashioncrawler/extractor/depop_data_extractor.py
Diff
commit 33c7bc403877528b1d8da4371843e06fcd9912c5
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Mon May 18 20:08:26 2026 -0700
Fix Depop image-link column: check get_image_links attr, not nonexistent html
---
fashioncrawler/extractor/depop_data_extractor.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fashioncrawler/extractor/depop_data_extractor.py b/fashioncrawler/extractor/depop_data_extractor.py
index a3bad8e..1321273 100644
--- a/fashioncrawler/extractor/depop_data_extractor.py
+++ b/fashioncrawler/extractor/depop_data_extractor.py
@@ -161,7 +161,7 @@ class DepopDataExtractor(BaseDataExtractor):
"Listing Link": [],
}
- if hasattr(self, "html"):
+ if hasattr(self, "get_image_links"):
all_data["Image Link"] = []
page_sources = DepopScraper.get_page_sources_concurrently(links)
← d82ddf3 initial scaffold (gitify-all 2026-05-06)
·
back to FashionCrawler
·
Fix base extractor stub to build DataFrame from extracted da 384f264 →