pryscraper/templates/trustpilot-reviews.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.1 KiB
JSON

{
"name": "Trustpilot Reviews",
"description": "Extract reviews from Trustpilot",
"site": "trustpilot.com",
"category": "reviews",
"icon": "\u2b50",
"schema": {
"name": "trustpilot_reviews",
"base_selector": ".styles_reviewCard",
"fields": [
{
"name": "title",
"selector": ".typography_heading-s",
"type": "text"
},
{
"name": "body",
"selector": ".typography_body-l",
"type": "text"
},
{
"name": "rating",
"selector": "img[alt*='stars']",
"type": "attribute",
"attribute": "alt"
},
{
"name": "author",
"selector": ".typography_heading-xxs",
"type": "text"
},
{
"name": "date",
"selector": "time",
"type": "attribute",
"attribute": "datetime"
},
{
"name": "review_count",
"selector": ".styles_reviewCard",
"type": "count"
}
]
},
"url_pattern": "*://www.trustpilot.com/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}