pryscraper/templates/politico-article.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

43 lines
No EOL
1 KiB
JSON

{
"name": "Politico Article",
"description": "Extract article content from Politico",
"site": "politico.com",
"category": "news",
"icon": "\ud83d\udcf0",
"schema": {
"name": "politico_article",
"base_selector": "article",
"fields": [
{
"name": "title",
"selector": "h1",
"type": "text"
},
{
"name": "author",
"selector": "[class*='byline'], [class*='author']",
"type": "text"
},
{
"name": "published_date",
"selector": "time, [class*='timestamp']",
"type": "attribute",
"attribute": "datetime"
},
{
"name": "content",
"selector": "[class*='story-text']",
"type": "text"
},
{
"name": "image_url",
"selector": "figure img, [class*='image'] img",
"type": "attribute",
"attribute": "src"
}
]
},
"url_pattern": "*://www.politico.com/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}