tamnd commited on
Commit
46b3fa5
·
verified ·
1 Parent(s): 9a4e5f9

Update README for CC-MAIN-2026-12

Browse files
Files changed (3) hide show
  1. LICENSE +11 -0
  2. README.md +88 -0
  3. stats.csv +1 -0
LICENSE ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Open Data Commons Attribution License (ODC-By) v1.0
2
+
3
+ You are free to:
4
+ - Share: copy, distribute, and use the database.
5
+ - Create: produce works from the database.
6
+ - Adapt: modify, transform, and build upon the database.
7
+
8
+ As long as you:
9
+ - Attribute: You must attribute any public use of the database,
10
+ or works produced from the database, in the manner specified
11
+ in the ODC-By license.
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: odc-by
3
+ task_categories:
4
+ - text-generation
5
+ - text-classification
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - 100M<n<1B
10
+ tags:
11
+ - html
12
+ - web-crawl
13
+ - common-crawl
14
+ ---
15
+
16
+ # OpenHTML — CC-MAIN-2026-12
17
+
18
+ Raw HTML pages from Common Crawl with structured metadata extracted from
19
+ WARC records, HTTP response headers, and HTML `<head>` tags.
20
+
21
+ ## Stats
22
+
23
+ | Metric | Value |
24
+ |--------|-------|
25
+ | Crawl | CC-MAIN-2026-12 |
26
+ | Shards | 0 |
27
+ | Documents | 0 |
28
+ | Raw HTML | 0 B |
29
+ | Body (parquet) | 0 B |
30
+ | Parquet (zstd) | 0 B |
31
+
32
+ ## Schema
33
+
34
+ Each row contains 24 columns:
35
+
36
+ | Column | Type | Description |
37
+ |--------|------|-------------|
38
+ | `url` | string | Full page URL |
39
+ | `warc_date` | string | Crawl timestamp (RFC3339) |
40
+ | `warc_record_id` | string | WARC record UUID |
41
+ | `warc_filename` | string | Source WARC file basename |
42
+ | `http_status` | int32 | HTTP status (always 200) |
43
+ | `content_type` | string | Content-Type header |
44
+ | `charset` | string | Character encoding |
45
+ | `content_language` | string | HTTP Content-Language header |
46
+ | `http_server` | string | Server software header |
47
+ | `http_last_modified` | string | Last-Modified header |
48
+ | `host` | string | Hostname (e.g. `www.example.com`) |
49
+ | `domain` | string | Registered domain (eTLD+1) |
50
+ | `path` | string | URL path |
51
+ | `query` | string | URL query string |
52
+ | `html_lang` | string | `<html lang="...">` attribute |
53
+ | `title` | string | Page `<title>` |
54
+ | `description` | string | `<meta name="description">` |
55
+ | `og_title` | string | `og:title` Open Graph tag |
56
+ | `og_description` | string | `og:description` Open Graph tag |
57
+ | `og_image` | string | `og:image` Open Graph tag |
58
+ | `og_type` | string | `og:type` Open Graph tag |
59
+ | `canonical_url` | string | `<link rel="canonical">` href |
60
+ | `html_length` | int64 | Raw HTML byte count |
61
+ | `body` | string | HTML body (truncated at 256 KB) |
62
+
63
+ ## Usage
64
+
65
+ ```python
66
+ from datasets import load_dataset
67
+
68
+ # Load a single shard
69
+ ds = load_dataset("open-index/open-html", data_files="data/CC-MAIN-2026-12/00000.parquet")
70
+
71
+ # Load entire crawl
72
+ ds = load_dataset("open-index/open-html", data_files="data/CC-MAIN-2026-12/*.parquet")
73
+
74
+ # Filter by language
75
+ en = ds.filter(lambda r: (r["html_lang"] or "").startswith("en"))
76
+
77
+ # Filter by domain
78
+ wiki = ds.filter(lambda r: r["domain"] == "wikipedia.org")
79
+ ```
80
+
81
+ ## Data Source
82
+
83
+ Common Crawl — filtered to HTTP 200 responses with `text/html` content type.
84
+ Body is truncated at 256 KB per record.
85
+
86
+ ## License
87
+
88
+ Open Data Commons Attribution License (ODC-By).
stats.csv ADDED
@@ -0,0 +1 @@
 
 
1
+ crawl_id,file_idx,rows,html_bytes,body_bytes,parquet_bytes,created_at,dur_download_s,dur_extract_s,dur_export_s,dur_publish_s,peak_rss_mb