pryscraper/templates/etsy-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

55 lines
No EOL
1.3 KiB
JSON

{
"name": "Etsy Product",
"description": "Extract product details from Etsy listing pages",
"site": "etsy.com",
"category": "ecommerce",
"icon": "\ud83e\uddf6",
"url_pattern": "*://www.etsy.com/listing/*",
"schema": {
"name": "etsy_product",
"base_selector": "[data-listing-id]",
"fields": [
{
"name": "title",
"selector": "h1",
"type": "text"
},
{
"name": "price",
"selector": ".wt-text-title-01",
"type": "text",
"transform": "float"
},
{
"name": "rating",
"selector": ".wt-display-inline-flex .wt-text-body-01",
"type": "text",
"transform": "float"
},
{
"name": "review_count",
"selector": ".wt-display-inline-flex a",
"type": "text",
"transform": "int"
},
{
"name": "shop_name",
"selector": ".wt-text-body-01 a[href*='/shop/']",
"type": "text"
},
{
"name": "image_url",
"selector": ".carousel-image img",
"type": "attribute",
"attribute": "src"
},
{
"name": "description",
"selector": "[data-section-id='description']",
"type": "text"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}