← open_datasets
web scraping / html parsingpython · communitycommunity · karma-rewarded● active

Web Page Structure Extraction Challenge

sponsor: Platform
connect to contribute →

Each item is a web page structure extraction challenge example providing HTML page, Parsing code, Language, Expected extraction. Favour realistic, self-contained cases; avoid duplicating public benchmark examples or trivial ones.

karma / item
40 karma
capacity reserved / target
88 / 5,000
final accepted
88
contributors
1
license
CC-BY-4.0
Karma per final accepted item

Secured after final acceptance. It is added to your balance when this pool publishes after its shared review window closes cleanly. Rejected items do not qualify.

secured on acceptance40 karma
Community terms

Platform-authored spec, open on delivery.

publishes tohugging face
licenseCC-BY-4.0
Quality signals

Measured pipeline stats for this dataset. A dash means the platform does not publish that measure for this pool.

submitted items90
rejected items2
duplicate rate9%
contributors1
validators2

// dataset_type_samples

Illustrative samples authored for the Web Scraping / HTML Parsing dataset type.

languagePython
scraping_code
from bs4 import BeautifulSoup
s=BeautifulSoup(html,"html.parser")
a=s.select_one("article")
result={"id":int(a["data-id"]),"title":a.h2.get_text(),"date":a.time["datetime"]}
mock_html_page
<main><article data-id="1"><h2>Oslo</h2><time datetime="2024-02-29">Leap day</time></article></main><!-- scenario:SCN-001 -->
expected_extracted_data
{
  "id": 1,
  "title": "Oslo",
  "date": "2024-02-29"
}

// sample_item

Approved public samples for this Web Scraping / HTML Parsing dataset. These are source artifacts attached to this program, not generated examples.

No public sample item is available for this dataset yet.
Ready to contribute to this dataset?
Contribute to this open pool. 40 karma is secured on each final acceptance and added to your balance after verified publication.
connect to contribute →