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

48 lines
No EOL
1.3 KiB
JSON

{
"name": "Generic E-commerce Product",
"description": "Extract product details from most standard e-commerce sites",
"site": "generic",
"category": "ecommerce",
"icon": "\ud83d\udce6",
"url_pattern": "*",
"schema": {
"name": "generic_product",
"base_selector": "body",
"fields": [
{
"name": "title",
"selector": "h1, [class*='title'], [class*='product-name'], [itemprop='name']",
"type": "text"
},
{
"name": "price",
"selector": "[class*='price'], [itemprop='price'], [class*='cost']",
"type": "text",
"transform": "float"
},
{
"name": "description",
"selector": "[class*='description'], [class*='desc'], [itemprop='description']",
"type": "text"
},
{
"name": "image_url",
"selector": "[class*='gallery'] img, [class*='product-image'] img, [itemprop='image']",
"type": "attribute",
"attribute": "src"
},
{
"name": "availability",
"selector": "[itemprop='availability'], [class*='stock'], [class*='availability']",
"type": "text"
},
{
"name": "sku",
"selector": "[itemprop='sku'], [class*='sku']",
"type": "text"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}