pryscraper/templates/amazon-search.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

56 lines
No EOL
1.3 KiB
JSON

{
"name": "Amazon Search Results",
"description": "Extract product listings from Amazon search results pages",
"site": "amazon.com",
"category": "ecommerce",
"icon": "\ud83d\udd0d",
"url_pattern": "*://www.amazon.com/s?*",
"schema": {
"name": "amazon_search",
"base_selector": "[data-component-type='s-search-result']",
"fields": [
{
"name": "title",
"selector": "h2 a span",
"type": "text"
},
{
"name": "price",
"selector": ".a-price .a-offscreen",
"type": "text",
"transform": "float"
},
{
"name": "rating",
"selector": ".a-icon-alt",
"type": "text",
"transform": "float"
},
{
"name": "review_count",
"selector": ".a-size-base.s-underline-text",
"type": "text",
"transform": "int"
},
{
"name": "url",
"selector": "h2 a",
"type": "attribute",
"attribute": "href"
},
{
"name": "image_url",
"selector": ".s-image",
"type": "attribute",
"attribute": "src"
},
{
"name": "is_prime",
"selector": ".s-prime",
"type": "exists"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}