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

42 lines
No EOL
1,005 B
JSON

{
"name": "Wikipedia Article",
"description": "Extract article content and infobox from Wikipedia",
"site": "wikipedia.org",
"category": "reference",
"icon": "\ud83d\udcda",
"schema": {
"name": "wikipedia_article",
"base_selector": "#content",
"fields": [
{
"name": "title",
"selector": "#firstHeading",
"type": "text"
},
{
"name": "summary",
"selector": ".mw-parser-output > p:first-of-type",
"type": "text"
},
{
"name": "body",
"selector": ".mw-parser-output",
"type": "text"
},
{
"name": "image_url",
"selector": ".infobox img",
"type": "attribute",
"attribute": "src"
},
{
"name": "categories",
"selector": ".mw-normal-catlinks ul li a",
"type": "text"
}
]
},
"url_pattern": "*://www.wikipedia.org/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}