pryscraper/templates/craigslist-listing.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,011 B
JSON

{
"name": "Craigslist Listing",
"description": "Extract listing details from Craigslist",
"site": "craigslist.org",
"category": "classifieds",
"icon": "\ud83d\udccb",
"schema": {
"name": "craigslist_listing",
"base_selector": ".page-container",
"fields": [
{
"name": "title",
"selector": "#titletextonly",
"type": "text"
},
{
"name": "price",
"selector": ".price",
"type": "text",
"transform": "float"
},
{
"name": "location",
"selector": ".postingtitletext small",
"type": "text"
},
{
"name": "description",
"selector": "#postingbody",
"type": "text"
},
{
"name": "posted_date",
"selector": ".date.timeago",
"type": "attribute",
"attribute": "datetime"
}
]
},
"url_pattern": "*://www.craigslist.org/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}