pryscraper/templates/wayfair-product.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

44 lines
No EOL
1 KiB
JSON

{
"name": "Wayfair Product",
"description": "Extract product details from Wayfair",
"site": "wayfair.com",
"category": "ecommerce",
"icon": "\ud83c\udfe0",
"url_pattern": "*://www.wayfair.com/*/pdp/*",
"schema": {
"name": "wayfair_product",
"base_selector": ".ProductPage",
"fields": [
{
"name": "title",
"selector": "h1",
"type": "text"
},
{
"name": "price",
"selector": ".hf-price-box",
"type": "text",
"transform": "float"
},
{
"name": "rating",
"selector": ".ProductReviewStars",
"type": "attribute",
"attribute": "aria-label"
},
{
"name": "description",
"selector": "#product-description",
"type": "text"
},
{
"name": "image_url",
"selector": ".ProductHeroImage img",
"type": "attribute",
"attribute": "src"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}