File size: 11,006 Bytes
cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 ae5d868 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 777d675 cc3da48 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | """
Common Crawl URL Extractor
--------------------------
Streams every URL from the latest Common Crawl crawl into chunked .gz files.
Resumable: skips shards whose output file already exists.
HuggingFace Spaces keep-alive: a lightweight HTTP server runs on port 7860
serving a live status page β HF sees it as an active app and won't kill it.
Output: cc_urls/urls_chunk_000.gz, urls_chunk_001.gz, ...
Each file contains one URL per line, gzip-compressed.
Estimated totals (latest single crawl):
- ~300 CDX shards
- ~800 MB per shard (compressed download)
- ~3β5 billion URLs total
- ~240 GB total download bandwidth
"""
import gzip
import json
import os
import time
import threading
import requests
from http.server import BaseHTTPRequestHandler, HTTPServer
# ββ Config ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
OUTPUT_DIR = os.environ.get("OUTPUT_DIR", "./cc_urls")
COLLINFO_URL = "https://index.commoncrawl.org/collinfo.json"
BASE_URL = "https://data.commoncrawl.org/"
STREAM_CHUNK = 1 * 1024 * 1024 # 1 MB read chunks while streaming
MAX_RETRIES = 5
RETRY_DELAY = 10 # seconds between retries
PORT = 7860 # HF Spaces default port
# ββ Shared state (written by scraper, read by HTTP handler) ββββββββββββββββββ
state = {
"crawl_id": "starting...",
"total_shards": 0,
"current": 0,
"skipped": 0,
"failed": 0,
"total_urls": 0,
"current_shard": "β",
"current_urls": 0,
"status": "initialising",
"start_time": time.time(),
"shard_start": time.time(),
}
state_lock = threading.Lock()
def get_state():
with state_lock:
return dict(state)
def set_state(**kwargs):
with state_lock:
state.update(kwargs)
# ββ Keep-alive HTTP server ββββββββββββββββββββββββββββββββββββββββββββββββββββ
STATUS_HTML = """<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="10">
<title>CC Extractor</title>
<style>
body {{ font-family: monospace; background: #0d1117; color: #c9d1d9; padding: 2rem; }}
h2 {{ color: #58a6ff; margin-bottom: 1rem; }}
.row {{ display: flex; gap: 3rem; margin-bottom: .5rem; }}
.lbl {{ color: #8b949e; width: 160px; }}
.val {{ color: #e6edf3; font-weight: bold; }}
.bar-wrap {{ background: #21262d; border-radius: 4px; height: 16px; width: 400px; margin-top: 1rem; }}
.bar {{ background: #1f6feb; border-radius: 4px; height: 16px; transition: width .5s; }}
.ok {{ color: #3fb950; }}
.fail {{ color: #f85149; }}
.note {{ color: #8b949e; font-size: .85rem; margin-top: 2rem; }}
</style>
</head>
<body>
<h2>🌎 Common Crawl URL Extractor</h2>
{rows}
<div class="bar-wrap"><div class="bar" style="width:{pct}%"></div></div>
<p class="note">Page auto-refreshes every 10 s | Started {elapsed}</p>
</body>
</html>"""
def make_status_html():
s = get_state()
elapsed_s = int(time.time() - s["start_time"])
h, rem = divmod(elapsed_s, 3600)
m, sec = divmod(rem, 60)
elapsed_str = f"{h}h {m}m {sec}s"
pct = 0
if s["total_shards"] > 0:
pct = round(s["current"] / s["total_shards"] * 100, 1)
shard_elapsed = int(time.time() - s["shard_start"])
def row(label, value, cls="val"):
return f'<div class="row"><span class="lbl">{label}</span><span class="{cls}">{value}</span></div>'
rows = "\n".join([
row("Crawl", s["crawl_id"]),
row("Status", s["status"]),
row("Progress", f'{s["current"]} / {s["total_shards"]} shards ({pct}%)'),
row("Current shard", s["current_shard"]),
row("Shard URLs", f'{s["current_urls"]:,} ({shard_elapsed}s so far)'),
row("Total URLs", f'{s["total_urls"]:,}'),
row("Skipped", f'{s["skipped"]:,}', "ok"),
row("Failed", f'{s["failed"]:,}', "fail" if s["failed"] else "ok"),
])
return STATUS_HTML.format(rows=rows, pct=pct, elapsed=elapsed_str)
class Handler(BaseHTTPRequestHandler):
def do_GET(self):
body = make_status_html().encode("utf-8")
self.send_response(200)
self.send_header("Content-Type", "text/html; charset=utf-8")
self.send_header("Content-Length", str(len(body)))
self.end_headers()
self.wfile.write(body)
def log_message(self, *_):
pass # silence access logs
def start_server():
server = HTTPServer(("0.0.0.0", PORT), Handler)
t = threading.Thread(target=server.serve_forever, daemon=True)
t.start()
print(f"Status page running on http://0.0.0.0:{PORT}")
# ββ Scraper helpers βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def get_latest_crawl_paths():
set_state(status="fetching crawl list")
print("Fetching crawl list from collinfo.json ...")
info = requests.get(COLLINFO_URL, timeout=30).json()
latest_id = info[0]["id"]
paths_url = f"{BASE_URL}crawl-data/{latest_id}/cc-index.paths.gz"
print(f"Latest crawl: {latest_id}")
r = requests.get(paths_url, timeout=60)
r.raise_for_status()
raw = gzip.decompress(r.content).decode("utf-8")
paths = [
line.strip()
for line in raw.splitlines()
if line.strip().endswith(".gz") and "/indexes/cdx-" in line
]
print(f"Found {len(paths)} CDX shards.")
set_state(crawl_id=latest_id, total_shards=len(paths))
return latest_id, paths
def shard_output_path(shard_index):
return os.path.join(OUTPUT_DIR, f"urls_chunk_{shard_index:03d}.gz")
def extract_urls_from_shard(shard_url, out_path):
count = 0
leftover = b""
for attempt in range(1, MAX_RETRIES + 1):
try:
r = requests.get(shard_url, stream=True, timeout=120)
r.raise_for_status()
with gzip.open(out_path + ".tmp", "wb") as out_gz:
decompressor = gzip.GzipFile(fileobj=r.raw)
while True:
chunk = decompressor.read(STREAM_CHUNK)
if not chunk:
break
block = leftover + chunk
lines = block.split(b"\n")
leftover = lines[-1]
for line in lines[:-1]:
line = line.strip()
if not line:
continue
try:
parts = line.split(b" ", 2)
if len(parts) < 3:
continue
obj = json.loads(parts[2])
url = obj.get("url")
if url:
out_gz.write((url + "\n").encode("utf-8"))
count += 1
# Update live counter every 50k URLs
if count % 50_000 == 0:
set_state(current_urls=count)
except (json.JSONDecodeError, UnicodeDecodeError):
continue
if leftover.strip():
try:
parts = leftover.split(b" ", 2)
if len(parts) >= 3:
obj = json.loads(parts[2])
url = obj.get("url")
if url:
out_gz.write((url + "\n").encode("utf-8"))
count += 1
except Exception:
pass
os.replace(out_path + ".tmp", out_path)
return count
except Exception as e:
print(f" Attempt {attempt}/{MAX_RETRIES} failed: {e}")
if os.path.exists(out_path + ".tmp"):
os.remove(out_path + ".tmp")
if attempt < MAX_RETRIES:
time.sleep(RETRY_DELAY * attempt)
else:
print(f" Giving up on this shard after {MAX_RETRIES} attempts.")
return 0
# ββ Main ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def main():
os.makedirs(OUTPUT_DIR, exist_ok=True)
start_server()
crawl_id, shard_paths = get_latest_crawl_paths()
total_urls = 0
skipped = 0
failed = 0
start_time = time.time()
print(f"\nStarting extraction β {OUTPUT_DIR}/\n{'β'*60}")
set_state(status="running", start_time=start_time)
for i, shard_path in enumerate(shard_paths):
out_path = shard_output_path(i)
shard_url = BASE_URL + shard_path
shard_name = os.path.basename(shard_path)
if os.path.exists(out_path):
skipped += 1
set_state(current=i + 1, skipped=skipped, current_shard=f"{shard_name} (skipped)")
print(f"[{i+1:03d}/{len(shard_paths)}] SKIP {shard_name}")
continue
set_state(
current=i + 1,
current_shard=shard_name,
current_urls=0,
shard_start=time.time(),
status="downloading",
)
print(f"[{i+1:03d}/{len(shard_paths)}] Fetching {shard_name} ...")
t0 = time.time()
count = extract_urls_from_shard(shard_url, out_path)
elapsed = time.time() - t0
if count > 0:
total_urls += count
size_mb = os.path.getsize(out_path) / 1024**2
set_state(total_urls=total_urls, current_urls=count)
print(f" β {count:,} URLs | {size_mb:.1f} MB | {elapsed:.0f}s")
else:
failed += 1
set_state(failed=failed)
print(f" β Failed β shard skipped")
set_state(status="done", current_shard="β", current_urls=0)
total_elapsed = time.time() - start_time
print(f"\n{'β'*60}")
print(f"Crawl: {crawl_id}")
print(f"Shards: {len(shard_paths)} total | {skipped} skipped | {failed} failed")
print(f"URLs: {total_urls:,}")
print(f"Output dir: {OUTPUT_DIR}/")
print(f"Time: {total_elapsed/3600:.2f} hours")
print(f"{'β'*60}")
# Keep server alive after completion so HF doesn't kill the space
print("Extraction complete. Server staying up β safe to stop manually.")
while True:
time.sleep(60)
if __name__ == "__main__":
main() |